Package com.amazonaws

Examples of com.amazonaws.ClientConfiguration


     * @param executorService
     *            The executor service by which all asynchronous requests will
     *            be executed.
     */
    public AWSElasticBeanstalkAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService) {
        this(awsCredentialsProvider, new ClientConfiguration(), executorService);
    }
View Full Code Here


     * @param executorService
     *            The executor service by which all asynchronous requests will
     *            be executed.
     */
    public AWSStorageGatewayAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService) {
        this(awsCredentialsProvider, new ClientConfiguration(), executorService);
    }
View Full Code Here

     * @param executorService
     *            The executor service by which all asynchronous requests will
     *            be executed.
     */
    public AmazonSimpleDBAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService) {
        this(awsCredentialsProvider, new ClientConfiguration(), executorService);
    }
View Full Code Here

     * @param executorService
     *            The executor service by which all asynchronous requests will
     *            be executed.
     */
    public AmazonRDSAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService) {
        this(awsCredentialsProvider, new ClientConfiguration(), executorService);
    }
View Full Code Here

     * @param executorService
     *            The executor service by which all asynchronous requests will
     *            be executed.
     */
    public AmazonCloudSearchAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService) {
        this(awsCredentialsProvider, new ClientConfiguration(), executorService);
    }
View Full Code Here

     * @param awsCredentials
     *            The AWS credentials to use when making requests to Amazon S3
     *            with this client.
     */
    public AmazonS3Client(AWSCredentials awsCredentials) {
        this(awsCredentials, new ClientConfiguration());
    }
View Full Code Here

   *
   * @param credentials
   *            The AWS credentials used to authenticate requests.
   */
    public ArchiveTransferManager(AWSCredentials credentials) {
      this(new StaticCredentialsProvider(credentials), new ClientConfiguration());
    }
View Full Code Here

   *            The client for working with Amazon Glacier.
   * @param credentialsProvider
   *            The AWS credentials provider used to authenticate requests.
   */
    public ArchiveTransferManager(AmazonGlacierClient glacier, AWSCredentialsProvider credentialsProvider) {
      this(glacier, credentialsProvider, new ClientConfiguration());
    }
View Full Code Here

   *            The client for working with Amazon Glacier.
   * @param credentials
   *            The AWS credentials used to authenticate requests.
   */
    public ArchiveTransferManager(AmazonGlacierClient glacier, AWSCredentials credentials) {
      this(glacier, new StaticCredentialsProvider(credentials), new ClientConfiguration());
    }
View Full Code Here

     *
     * @see AmazonS3Client#AmazonS3Client()
     * @see AmazonS3Client#AmazonS3Client(AWSCredentials, ClientConfiguration)
     */
    public AmazonS3Client(AWSCredentials awsCredentials) {
        this(awsCredentials, new ClientConfiguration());
    }
View Full Code Here

TOP

Related Classes of com.amazonaws.ClientConfiguration

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.