com.amazonaws.client.AwsSyncClientParams Java Examples

The following examples show how to use com.amazonaws.client.AwsSyncClientParams. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: RegistryAuthSupplierChainTest.java    From docker-registry-artifact-plugin with Apache License 2.0 4 votes vote down vote up
@Override
protected AmazonECR build(AwsSyncClientParams clientParams) {
    return mockAmazonEcrClient;
}
 
Example #2
Source File: NexusS3ClientBuilder.java    From nexus-public with Eclipse Public License 1.0 4 votes vote down vote up
@Override
protected AmazonS3 build(final AwsSyncClientParams clientParams) {
  checkNotNull(getBlobStoreConfig());
  return new EncryptingAmazonS3Client(getBlobStoreConfig(), new AmazonS3ClientParamsWrapper(clientParams, resolveS3ClientOptions()));
}
 
Example #3
Source File: AmazonTestWebserviceClientBuilder.java    From spring-cloud-aws with Apache License 2.0 4 votes vote down vote up
@Override
protected AmazonTestWebserviceClient build(AwsSyncClientParams clientParams) {
	return new AmazonTestWebserviceClient(getCredentials());
}
 
Example #4
Source File: AWSServerlessApplicationRepositoryClient.java    From realworld-serverless-application with Apache License 2.0 2 votes vote down vote up
/**
 * Constructs a new client to invoke service methods on AWSServerlessApplicationRepository using the specified
 * parameters.
 *
 * <p>
 * All service calls made using this new client object are blocking, and will not return until the service call
 * completes.
 *
 * @param clientParams
 *        Object providing client parameters.
 */
AWSServerlessApplicationRepositoryClient(AwsSyncClientParams clientParams) {
    this.clientHandler = new SdkClientHandler(new ClientHandlerParams().withClientParams(clientParams));
}
 
Example #5
Source File: AWSServerlessApplicationRepositoryClientBuilder.java    From realworld-serverless-application with Apache License 2.0 2 votes vote down vote up
/**
 * Construct a synchronous implementation of AWSServerlessApplicationRepository using the current builder
 * configuration.
 *
 * @param params
 *        Current builder configuration represented as a parameter object.
 * @return Fully configured implementation of AWSServerlessApplicationRepository.
 */
@Override
protected AWSServerlessApplicationRepository build(AwsSyncClientParams params) {
    return new AWSServerlessApplicationRepositoryClient(params);
}
 
Example #6
Source File: AWSServerlessApplicationRepositoryClient.java    From realworld-serverless-application with Apache License 2.0 2 votes vote down vote up
/**
 * Constructs a new client to invoke service methods on AWSServerlessApplicationRepository using the specified
 * parameters.
 *
 * <p>
 * All service calls made using this new client object are blocking, and will not return until the service call
 * completes.
 *
 * @param clientParams
 *        Object providing client parameters.
 */
AWSServerlessApplicationRepositoryClient(AwsSyncClientParams clientParams) {
  this.clientHandler = new SdkClientHandler(new ClientHandlerParams().withClientParams(clientParams));
}
 
Example #7
Source File: AWSServerlessApplicationRepositoryClientBuilder.java    From realworld-serverless-application with Apache License 2.0 2 votes vote down vote up
/**
 * Construct a synchronous implementation of AWSServerlessApplicationRepository using the current builder
 * configuration.
 *
 * @param params
 *        Current builder configuration represented as a parameter object.
 * @return Fully configured implementation of AWSServerlessApplicationRepository.
 */
@Override
protected AWSServerlessApplicationRepository build(AwsSyncClientParams params) {
  return new AWSServerlessApplicationRepositoryClient(params);
}