Uses of Interface
com.amazonaws.auth.AWSCredentialsProvider

Packages that use AWSCredentialsProvider
com.amazonaws.auth   
com.amazonaws.auth.profile AWS configuration profiles allow you to share multiple sets of AWS security credentials between different tools such as the AWS SDK for Java and the AWS CLI. 
com.amazonaws.metrics Classes used to support the AWS SDK metrics API. 
com.amazonaws.regions   
com.amazonaws.services.autoscaling Synchronous and asynchronous client classes for accessing AmazonAutoScaling. 
com.amazonaws.services.cloudformation Synchronous and asynchronous client classes for accessing AmazonCloudFormation. 
com.amazonaws.services.cloudfront Synchronous and asynchronous client classes for accessing AmazonCloudFront. 
com.amazonaws.services.cloudfront_2012_03_15 Synchronous and asynchronous client classes for accessing AmazonCloudFront. 
com.amazonaws.services.cloudsearch Synchronous and asynchronous client classes for accessing AmazonCloudSearch. 
com.amazonaws.services.cloudsearchv2 Synchronous and asynchronous client classes for accessing AmazonCloudSearchv2. 
com.amazonaws.services.cloudtrail Synchronous and asynchronous client classes for accessing AWSCloudTrail. 
com.amazonaws.services.cloudwatch Synchronous and asynchronous client classes for accessing AmazonCloudWatch. 
com.amazonaws.services.datapipeline Synchronous and asynchronous client classes for accessing DataPipeline. 
com.amazonaws.services.directconnect Synchronous and asynchronous client classes for accessing AmazonDirectConnect. 
com.amazonaws.services.dynamodb Synchronous and asynchronous client classes for accessing AmazonDynamoDB. 
com.amazonaws.services.dynamodbv2 Synchronous and asynchronous client classes for accessing AmazonDynamoDBv2. 
com.amazonaws.services.dynamodbv2.datamodeling   
com.amazonaws.services.ec2 Synchronous and asynchronous client classes for accessing AmazonEC2. 
com.amazonaws.services.elasticache Synchronous and asynchronous client classes for accessing AmazonElastiCache. 
com.amazonaws.services.elasticbeanstalk Synchronous and asynchronous client classes for accessing AWSElasticBeanstalk. 
com.amazonaws.services.elasticloadbalancing Synchronous and asynchronous client classes for accessing AmazonElasticLoadBalancing. 
com.amazonaws.services.elasticmapreduce Synchronous and asynchronous client classes for accessing AmazonElasticMapReduce. 
com.amazonaws.services.elastictranscoder Synchronous and asynchronous client classes for accessing AmazonElasticTranscoder. 
com.amazonaws.services.glacier Synchronous and asynchronous client classes for accessing AmazonGlacier. 
com.amazonaws.services.glacier.transfer   
com.amazonaws.services.identitymanagement Synchronous and asynchronous client classes for accessing AmazonIdentityManagement. 
com.amazonaws.services.importexport Synchronous and asynchronous client classes for accessing AmazonImportExport. 
com.amazonaws.services.kinesis Synchronous and asynchronous client classes for accessing AmazonKinesis. 
com.amazonaws.services.opsworks Synchronous and asynchronous client classes for accessing AWSOpsWorks. 
com.amazonaws.services.rds Synchronous and asynchronous client classes for accessing AmazonRDS. 
com.amazonaws.services.redshift Synchronous and asynchronous client classes for accessing AmazonRedshift. 
com.amazonaws.services.route53 Synchronous and asynchronous client classes for accessing AmazonRoute53. 
com.amazonaws.services.s3 Synchronous client for accessing Amazon S3. 
com.amazonaws.services.s3.transfer Transfer management. 
com.amazonaws.services.securitytoken Synchronous and asynchronous client classes for accessing AWSSecurityTokenService. 
com.amazonaws.services.simpledb Synchronous and asynchronous client classes for accessing AmazonSimpleDB. 
com.amazonaws.services.simpleemail Synchronous and asynchronous client classes for accessing AmazonSimpleEmailService. 
com.amazonaws.services.simpleworkflow Synchronous and asynchronous client classes for accessing AmazonSimpleWorkflow. 
com.amazonaws.services.sns Synchronous and asynchronous client classes for accessing AmazonSNS. 
com.amazonaws.services.sqs Synchronous and asynchronous client classes for accessing AmazonSQS. 
com.amazonaws.services.storagegateway Synchronous and asynchronous client classes for accessing AWSStorageGateway. 
com.amazonaws.services.support Synchronous and asynchronous client classes for accessing AWSSupport. 
 

Uses of AWSCredentialsProvider in com.amazonaws.auth
 

Classes in com.amazonaws.auth that implement AWSCredentialsProvider
 class AWSCredentialsProviderChain
          AWSCredentialsProvider implementation that chains together multiple credentials providers.
 class ClasspathPropertiesFileCredentialsProvider
          AWSCredentialsProvider implementation that loads AWS security credentials from a properties file on the classpath.
 class DefaultAWSCredentialsProviderChain
          AWS credentials provider chain that looks for credentials in this order: Environment Variables - AWS_ACCESS_KEY_ID and AWS_SECRET_KEY Java System Properties - aws.accessKeyId and aws.secretKey Credential profiles file at the default location (~/.aws/credentials) shared by all AWS SDKs and the AWS CLI Instance profile credentials delivered through the Amazon EC2 metadata service
 class EnvironmentVariableCredentialsProvider
          AWSCredentialsProvider implementation that provides credentials by looking at the: AWS_ACCESS_KEY_ID (or AWS_ACCESS_KEY) and AWS_SECRET_KEY (or AWS_SECRET_ACCESS_KEY) environment variables.
 class InstanceProfileCredentialsProvider
          Credentials provider implementation that loads credentials from the Amazon EC2 Instance Metadata Service.
 class PropertiesFileCredentialsProvider
          AWSCredentialsProvider implementation that loads AWS security credentials from a properties file provided on initialization.
 class STSAssumeRoleSessionCredentialsProvider
          AWSCredentialsProvider implementation that uses the AWS Security Token Service to assume a Role and create temporary, short-lived sessions to use for authentication.
 class STSSessionCredentialsProvider
          AWSCredentialsProvider implementation that uses the AWS Security Token Service to create temporary, short-lived sessions to use for authentication.
 class SystemPropertiesCredentialsProvider
          AWSCredentialsProvider implementation that provides credentials by looking at the aws.accessKeyId and aws.secretKey Java system properties.
 class WebIdentityFederationSessionCredentialsProvider
          AWSCredentialsProvider implementation that uses the AWS Security Token Service to create temporary, short-lived sessions to use for authentication.
 

Constructors in com.amazonaws.auth with parameters of type AWSCredentialsProvider
AWSCredentialsProviderChain(AWSCredentialsProvider... credentialsProviders)
          Constructs a new AWSCredentialsProviderChain with the specified credential providers.
STSAssumeRoleSessionCredentialsProvider(AWSCredentialsProvider longLivedCredentialsProvider, String roleArn, String roleSessionName)
          Constructs a new STSAssumeRoleSessionCredentialsProvider, which will use the specified credentials provider (which vends long lived AWS credentials) to make a request to the AWS Security Token Service (STS), usess the provided STSAssumeRoleSessionCredentialsProvider.roleArn to assume a role and then request short lived session credentials, which will then be returned by this class's STSAssumeRoleSessionCredentialsProvider.getCredentials() method.
STSAssumeRoleSessionCredentialsProvider(AWSCredentialsProvider longLivedCredentialsProvider, String roleArn, String roleSessionName, ClientConfiguration clientConfiguration)
          Constructs a new STSAssumeRoleSessionCredentialsProvider, which will use the specified credentials provider (which vends long lived AWS credentials) to make a request to the AWS Security Token Service (STS), uses the provided STSAssumeRoleSessionCredentialsProvider.roleArn to assume a role and then request short lived session credentials, which will then be returned by this class's STSAssumeRoleSessionCredentialsProvider.getCredentials() method.
STSSessionCredentialsProvider(AWSCredentialsProvider longLivedCredentialsProvider)
          Constructs a new STSSessionCredentialsProvider, which will use the specified credentials provider (which vends long lived AWS credentials) to make a request to the AWS Security Token Service (STS) to request short lived session credentials, which will then be returned by this class's STSSessionCredentialsProvider.getCredentials() method.
STSSessionCredentialsProvider(AWSCredentialsProvider longLivedCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new STSSessionCredentialsProvider, which will use the specified credentials provider (which vends long lived AWS credentials) to make a request to the AWS Security Token Service (STS) to request short lived session credentials, which will then be returned by this class's STSSessionCredentialsProvider.getCredentials() method.
 

Uses of AWSCredentialsProvider in com.amazonaws.auth.profile
 

Classes in com.amazonaws.auth.profile that implement AWSCredentialsProvider
 class ProfileCredentialsProvider
          Credentials provider based on AWS configuration profiles.
 

Uses of AWSCredentialsProvider in com.amazonaws.metrics
 

Methods in com.amazonaws.metrics that return AWSCredentialsProvider
static AWSCredentialsProvider AwsSdkMetrics.getCredentialProvider()
          Returns the credential provider for the default AWS SDK metric implementation.
 

Methods in com.amazonaws.metrics with parameters of type AWSCredentialsProvider
static void AwsSdkMetrics.setCredentialProvider(AWSCredentialsProvider provider)
          Sets the credential provider for the default AWS SDK metric implementation; or null if the default is to be used.
 

Uses of AWSCredentialsProvider in com.amazonaws.regions
 

Methods in com.amazonaws.regions with parameters of type AWSCredentialsProvider
<T extends AmazonWebServiceClient>
T
Region.createClient(Class<T> serviceClass, AWSCredentialsProvider credentials, ClientConfiguration config)
          Creates a new service client of the class given and configures it.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.autoscaling
 

Constructors in com.amazonaws.services.autoscaling with parameters of type AWSCredentialsProvider
AmazonAutoScalingAsyncClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new asynchronous client to invoke service methods on AmazonAutoScaling using the specified AWS account credentials provider.
AmazonAutoScalingAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new asynchronous client to invoke service methods on AmazonAutoScaling using the specified AWS account credentials provider and client configuration options.
AmazonAutoScalingAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonAutoScaling using the specified AWS account credentials provider, executor service, and client configuration options.
AmazonAutoScalingAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonAutoScaling using the specified AWS account credentials provider and executor service.
AmazonAutoScalingClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new client to invoke service methods on AmazonAutoScaling using the specified AWS account credentials provider.
AmazonAutoScalingClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new client to invoke service methods on AmazonAutoScaling using the specified AWS account credentials provider and client configuration options.
AmazonAutoScalingClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
          Constructs a new client to invoke service methods on AmazonAutoScaling using the specified AWS account credentials provider, client configuration options, and request metric collector.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.cloudformation
 

Constructors in com.amazonaws.services.cloudformation with parameters of type AWSCredentialsProvider
AmazonCloudFormationAsyncClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new asynchronous client to invoke service methods on AmazonCloudFormation using the specified AWS account credentials provider.
AmazonCloudFormationAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new asynchronous client to invoke service methods on AmazonCloudFormation using the specified AWS account credentials provider and client configuration options.
AmazonCloudFormationAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonCloudFormation using the specified AWS account credentials provider, executor service, and client configuration options.
AmazonCloudFormationAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonCloudFormation using the specified AWS account credentials provider and executor service.
AmazonCloudFormationClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new client to invoke service methods on AmazonCloudFormation using the specified AWS account credentials provider.
AmazonCloudFormationClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new client to invoke service methods on AmazonCloudFormation using the specified AWS account credentials provider and client configuration options.
AmazonCloudFormationClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
          Constructs a new client to invoke service methods on AmazonCloudFormation using the specified AWS account credentials provider, client configuration options, and request metric collector.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.cloudfront
 

Constructors in com.amazonaws.services.cloudfront with parameters of type AWSCredentialsProvider
AmazonCloudFrontAsyncClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new asynchronous client to invoke service methods on AmazonCloudFront using the specified AWS account credentials provider.
AmazonCloudFrontAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new asynchronous client to invoke service methods on AmazonCloudFront using the specified AWS account credentials provider and client configuration options.
AmazonCloudFrontAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonCloudFront using the specified AWS account credentials provider, executor service, and client configuration options.
AmazonCloudFrontAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonCloudFront using the specified AWS account credentials provider and executor service.
AmazonCloudFrontClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new client to invoke service methods on AmazonCloudFront using the specified AWS account credentials provider.
AmazonCloudFrontClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new client to invoke service methods on AmazonCloudFront using the specified AWS account credentials provider and client configuration options.
AmazonCloudFrontClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
          Constructs a new client to invoke service methods on AmazonCloudFront using the specified AWS account credentials provider, client configuration options, and request metric collector.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.cloudfront_2012_03_15
 

Constructors in com.amazonaws.services.cloudfront_2012_03_15 with parameters of type AWSCredentialsProvider
AmazonCloudFrontAsyncClient(AWSCredentialsProvider awsCredentialsProvider)
          Deprecated. Constructs a new asynchronous client to invoke service methods on AmazonCloudFront using the specified AWS account credentials provider.
AmazonCloudFrontAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, ExecutorService executorService)
          Deprecated. Constructs a new asynchronous client to invoke service methods on AmazonCloudFront using the specified AWS account credentials provider, executor service, and client configuration options.
AmazonCloudFrontAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService)
          Deprecated. Constructs a new asynchronous client to invoke service methods on AmazonCloudFront using the specified AWS account credentials provider and executor service.
AmazonCloudFrontClient(AWSCredentialsProvider awsCredentialsProvider)
          Deprecated. Constructs a new client to invoke service methods on AmazonCloudFront using the specified AWS account credentials provider.
AmazonCloudFrontClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Deprecated. Constructs a new client to invoke service methods on AmazonCloudFront using the specified AWS account credentials provider and client configuration options.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.cloudsearch
 

Constructors in com.amazonaws.services.cloudsearch with parameters of type AWSCredentialsProvider
AmazonCloudSearchAsyncClient(AWSCredentialsProvider awsCredentialsProvider)
          Deprecated. Constructs a new asynchronous client to invoke service methods on AmazonCloudSearch using the specified AWS account credentials provider.
AmazonCloudSearchAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Deprecated. Constructs a new asynchronous client to invoke service methods on AmazonCloudSearch using the specified AWS account credentials provider and client configuration options.
AmazonCloudSearchAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, ExecutorService executorService)
          Deprecated. Constructs a new asynchronous client to invoke service methods on AmazonCloudSearch using the specified AWS account credentials provider, executor service, and client configuration options.
AmazonCloudSearchAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService)
          Deprecated. Constructs a new asynchronous client to invoke service methods on AmazonCloudSearch using the specified AWS account credentials provider and executor service.
AmazonCloudSearchClient(AWSCredentialsProvider awsCredentialsProvider)
          Deprecated. Constructs a new client to invoke service methods on AmazonCloudSearch using the specified AWS account credentials provider.
AmazonCloudSearchClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Deprecated. Constructs a new client to invoke service methods on AmazonCloudSearch using the specified AWS account credentials provider and client configuration options.
AmazonCloudSearchClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
          Deprecated. Constructs a new client to invoke service methods on AmazonCloudSearch using the specified AWS account credentials provider, client configuration options, and request metric collector.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.cloudsearchv2
 

Constructors in com.amazonaws.services.cloudsearchv2 with parameters of type AWSCredentialsProvider
AmazonCloudSearchAsyncClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new asynchronous client to invoke service methods on AmazonCloudSearchv2 using the specified AWS account credentials provider.
AmazonCloudSearchAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new asynchronous client to invoke service methods on AmazonCloudSearchv2 using the specified AWS account credentials provider and client configuration options.
AmazonCloudSearchAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonCloudSearchv2 using the specified AWS account credentials provider, executor service, and client configuration options.
AmazonCloudSearchAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonCloudSearchv2 using the specified AWS account credentials provider and executor service.
AmazonCloudSearchClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new client to invoke service methods on AmazonCloudSearchv2 using the specified AWS account credentials provider.
AmazonCloudSearchClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new client to invoke service methods on AmazonCloudSearchv2 using the specified AWS account credentials provider and client configuration options.
AmazonCloudSearchClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
          Constructs a new client to invoke service methods on AmazonCloudSearchv2 using the specified AWS account credentials provider, client configuration options, and request metric collector.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.cloudtrail
 

Constructors in com.amazonaws.services.cloudtrail with parameters of type AWSCredentialsProvider
AWSCloudTrailAsyncClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new asynchronous client to invoke service methods on AWSCloudTrail using the specified AWS account credentials provider.
AWSCloudTrailAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new asynchronous client to invoke service methods on AWSCloudTrail using the specified AWS account credentials provider and client configuration options.
AWSCloudTrailAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AWSCloudTrail using the specified AWS account credentials provider, executor service, and client configuration options.
AWSCloudTrailAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AWSCloudTrail using the specified AWS account credentials provider and executor service.
AWSCloudTrailClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new client to invoke service methods on AWSCloudTrail using the specified AWS account credentials provider.
AWSCloudTrailClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new client to invoke service methods on AWSCloudTrail using the specified AWS account credentials provider and client configuration options.
AWSCloudTrailClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
          Constructs a new client to invoke service methods on AWSCloudTrail using the specified AWS account credentials provider, client configuration options and request metric collector.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.cloudwatch
 

Constructors in com.amazonaws.services.cloudwatch with parameters of type AWSCredentialsProvider
AmazonCloudWatchAsyncClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new asynchronous client to invoke service methods on AmazonCloudWatch using the specified AWS account credentials provider.
AmazonCloudWatchAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new asynchronous client to invoke service methods on AmazonCloudWatch using the specified AWS account credentials provider and client configuration options.
AmazonCloudWatchAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonCloudWatch using the specified AWS account credentials provider, executor service, and client configuration options.
AmazonCloudWatchAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonCloudWatch using the specified AWS account credentials provider and executor service.
AmazonCloudWatchClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new client to invoke service methods on AmazonCloudWatch using the specified AWS account credentials provider.
AmazonCloudWatchClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new client to invoke service methods on AmazonCloudWatch using the specified AWS account credentials provider and client configuration options.
AmazonCloudWatchClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
          Constructs a new client to invoke service methods on AmazonCloudWatch using the specified AWS account credentials provider, client configuration options, and request metric collector.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.datapipeline
 

Constructors in com.amazonaws.services.datapipeline with parameters of type AWSCredentialsProvider
DataPipelineAsyncClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new asynchronous client to invoke service methods on DataPipeline using the specified AWS account credentials provider.
DataPipelineAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new asynchronous client to invoke service methods on DataPipeline using the specified AWS account credentials provider and client configuration options.
DataPipelineAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on DataPipeline using the specified AWS account credentials provider, executor service, and client configuration options.
DataPipelineAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on DataPipeline using the specified AWS account credentials provider and executor service.
DataPipelineClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new client to invoke service methods on DataPipeline using the specified AWS account credentials provider.
DataPipelineClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new client to invoke service methods on DataPipeline using the specified AWS account credentials provider and client configuration options.
DataPipelineClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
          Constructs a new client to invoke service methods on DataPipeline using the specified AWS account credentials provider, client configuration options and request metric collector.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.directconnect
 

Constructors in com.amazonaws.services.directconnect with parameters of type AWSCredentialsProvider
AmazonDirectConnectAsyncClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new asynchronous client to invoke service methods on AmazonDirectConnect using the specified AWS account credentials provider.
AmazonDirectConnectAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new asynchronous client to invoke service methods on AmazonDirectConnect using the specified AWS account credentials provider and client configuration options.
AmazonDirectConnectAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonDirectConnect using the specified AWS account credentials provider, executor service, and client configuration options.
AmazonDirectConnectAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonDirectConnect using the specified AWS account credentials provider and executor service.
AmazonDirectConnectClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new client to invoke service methods on AmazonDirectConnect using the specified AWS account credentials provider.
AmazonDirectConnectClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new client to invoke service methods on AmazonDirectConnect using the specified AWS account credentials provider and client configuration options.
AmazonDirectConnectClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
          Constructs a new client to invoke service methods on AmazonDirectConnect using the specified AWS account credentials provider, client configuration options and request metric collector.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.dynamodb
 

Constructors in com.amazonaws.services.dynamodb with parameters of type AWSCredentialsProvider
AmazonDynamoDBAsyncClient(AWSCredentialsProvider awsCredentialsProvider)
          Deprecated. Constructs a new asynchronous client to invoke service methods on AmazonDynamoDB using the specified AWS account credentials provider.
AmazonDynamoDBAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Deprecated. Constructs a new asynchronous client to invoke service methods on AmazonDynamoDB using the specified AWS account credentials provider and client configuration options.
AmazonDynamoDBAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, ExecutorService executorService)
          Deprecated. Constructs a new asynchronous client to invoke service methods on AmazonDynamoDB using the specified AWS account credentials provider, executor service, and client configuration options.
AmazonDynamoDBAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService)
          Deprecated. Constructs a new asynchronous client to invoke service methods on AmazonDynamoDB using the specified AWS account credentials provider and executor service.
AmazonDynamoDBClient(AWSCredentialsProvider awsCredentialsProvider)
          Deprecated. Constructs a new client to invoke service methods on AmazonDynamoDB using the specified AWS account credentials provider.
AmazonDynamoDBClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Deprecated. Constructs a new client to invoke service methods on AmazonDynamoDB using the specified AWS account credentials provider and client configuration options.
AmazonDynamoDBClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
          Deprecated. Constructs a new client to invoke service methods on AmazonDynamoDB using the specified AWS account credentials provider and client configuration options.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.dynamodbv2
 

Constructors in com.amazonaws.services.dynamodbv2 with parameters of type AWSCredentialsProvider
AmazonDynamoDBAsyncClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new asynchronous client to invoke service methods on AmazonDynamoDBv2 using the specified AWS account credentials provider.
AmazonDynamoDBAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new asynchronous client to invoke service methods on AmazonDynamoDBv2 using the specified AWS account credentials provider and client configuration options.
AmazonDynamoDBAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonDynamoDBv2 using the specified AWS account credentials provider, executor service, and client configuration options.
AmazonDynamoDBAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonDynamoDBv2 using the specified AWS account credentials provider and executor service.
AmazonDynamoDBClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new client to invoke service methods on AmazonDynamoDBv2 using the specified AWS account credentials provider.
AmazonDynamoDBClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new client to invoke service methods on AmazonDynamoDBv2 using the specified AWS account credentials provider and client configuration options.
AmazonDynamoDBClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
          Constructs a new client to invoke service methods on AmazonDynamoDBv2 using the specified AWS account credentials provider, client configuration options and request metric collector.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.dynamodbv2.datamodeling
 

Constructors in com.amazonaws.services.dynamodbv2.datamodeling with parameters of type AWSCredentialsProvider
DynamoDBMapper(AmazonDynamoDB ddb, AWSCredentialsProvider s3CredentialProvider)
          Constructs a new mapper with the service object and S3 client cache given, using the default configuration.
DynamoDBMapper(AmazonDynamoDB dynamoDB, DynamoDBMapperConfig config, AttributeTransformer transformer, AWSCredentialsProvider s3CredentialsProvider)
          Constructor with all parameters.
DynamoDBMapper(AmazonDynamoDB dynamoDB, DynamoDBMapperConfig config, AWSCredentialsProvider s3CredentialProvider)
          Constructs a new mapper with the service object, configuration, and S3 client cache given.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.ec2
 

Constructors in com.amazonaws.services.ec2 with parameters of type AWSCredentialsProvider
AmazonEC2AsyncClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new asynchronous client to invoke service methods on AmazonEC2 using the specified AWS account credentials provider.
AmazonEC2AsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new asynchronous client to invoke service methods on AmazonEC2 using the specified AWS account credentials provider and client configuration options.
AmazonEC2AsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonEC2 using the specified AWS account credentials provider, executor service, and client configuration options.
AmazonEC2AsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonEC2 using the specified AWS account credentials provider and executor service.
AmazonEC2Client(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new client to invoke service methods on AmazonEC2 using the specified AWS account credentials provider.
AmazonEC2Client(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new client to invoke service methods on AmazonEC2 using the specified AWS account credentials provider and client configuration options.
AmazonEC2Client(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
          Constructs a new client to invoke service methods on AmazonEC2 using the specified AWS account credentials provider, client configuration options, and request metric collector.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.elasticache
 

Constructors in com.amazonaws.services.elasticache with parameters of type AWSCredentialsProvider
AmazonElastiCacheAsyncClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new asynchronous client to invoke service methods on AmazonElastiCache using the specified AWS account credentials provider.
AmazonElastiCacheAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new asynchronous client to invoke service methods on AmazonElastiCache using the specified AWS account credentials provider and client configuration options.
AmazonElastiCacheAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonElastiCache using the specified AWS account credentials provider, executor service, and client configuration options.
AmazonElastiCacheAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonElastiCache using the specified AWS account credentials provider and executor service.
AmazonElastiCacheClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new client to invoke service methods on AmazonElastiCache using the specified AWS account credentials provider.
AmazonElastiCacheClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new client to invoke service methods on AmazonElastiCache using the specified AWS account credentials provider and client configuration options.
AmazonElastiCacheClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
          Constructs a new client to invoke service methods on AmazonElastiCache using the specified AWS account credentials provider, client configuration options, and request metric collector.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.elasticbeanstalk
 

Constructors in com.amazonaws.services.elasticbeanstalk with parameters of type AWSCredentialsProvider
AWSElasticBeanstalkAsyncClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new asynchronous client to invoke service methods on AWSElasticBeanstalk using the specified AWS account credentials provider.
AWSElasticBeanstalkAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new asynchronous client to invoke service methods on AWSElasticBeanstalk using the specified AWS account credentials provider and client configuration options.
AWSElasticBeanstalkAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AWSElasticBeanstalk using the specified AWS account credentials provider, executor service, and client configuration options.
AWSElasticBeanstalkAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AWSElasticBeanstalk using the specified AWS account credentials provider and executor service.
AWSElasticBeanstalkClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new client to invoke service methods on AWSElasticBeanstalk using the specified AWS account credentials provider.
AWSElasticBeanstalkClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new client to invoke service methods on AWSElasticBeanstalk using the specified AWS account credentials provider and client configuration options.
AWSElasticBeanstalkClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
          Constructs a new client to invoke service methods on AWSElasticBeanstalk using the specified AWS account credentials provider, client configuration options, and request metric collector.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.elasticloadbalancing
 

Constructors in com.amazonaws.services.elasticloadbalancing with parameters of type AWSCredentialsProvider
AmazonElasticLoadBalancingAsyncClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new asynchronous client to invoke service methods on AmazonElasticLoadBalancing using the specified AWS account credentials provider.
AmazonElasticLoadBalancingAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new asynchronous client to invoke service methods on AmazonElasticLoadBalancing using the specified AWS account credentials provider and client configuration options.
AmazonElasticLoadBalancingAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonElasticLoadBalancing using the specified AWS account credentials provider, executor service, and client configuration options.
AmazonElasticLoadBalancingAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonElasticLoadBalancing using the specified AWS account credentials provider and executor service.
AmazonElasticLoadBalancingClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new client to invoke service methods on AmazonElasticLoadBalancing using the specified AWS account credentials provider.
AmazonElasticLoadBalancingClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new client to invoke service methods on AmazonElasticLoadBalancing using the specified AWS account credentials provider and client configuration options.
AmazonElasticLoadBalancingClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
          Constructs a new client to invoke service methods on AmazonElasticLoadBalancing using the specified AWS account credentials provider, client configuration options, and request metric collector.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.elasticmapreduce
 

Constructors in com.amazonaws.services.elasticmapreduce with parameters of type AWSCredentialsProvider
AmazonElasticMapReduceAsyncClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new asynchronous client to invoke service methods on AmazonElasticMapReduce using the specified AWS account credentials provider.
AmazonElasticMapReduceAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new asynchronous client to invoke service methods on AmazonElasticMapReduce using the specified AWS account credentials provider and client configuration options.
AmazonElasticMapReduceAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonElasticMapReduce using the specified AWS account credentials provider, executor service, and client configuration options.
AmazonElasticMapReduceAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonElasticMapReduce using the specified AWS account credentials provider and executor service.
AmazonElasticMapReduceClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new client to invoke service methods on AmazonElasticMapReduce using the specified AWS account credentials provider.
AmazonElasticMapReduceClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new client to invoke service methods on AmazonElasticMapReduce using the specified AWS account credentials provider and client configuration options.
AmazonElasticMapReduceClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
          Constructs a new client to invoke service methods on AmazonElasticMapReduce using the specified AWS account credentials provider, client configuration options and request metric collector.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.elastictranscoder
 

Constructors in com.amazonaws.services.elastictranscoder with parameters of type AWSCredentialsProvider
AmazonElasticTranscoderAsyncClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new asynchronous client to invoke service methods on AmazonElasticTranscoder using the specified AWS account credentials provider.
AmazonElasticTranscoderAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new asynchronous client to invoke service methods on AmazonElasticTranscoder using the specified AWS account credentials provider and client configuration options.
AmazonElasticTranscoderAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonElasticTranscoder using the specified AWS account credentials provider, executor service, and client configuration options.
AmazonElasticTranscoderAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonElasticTranscoder using the specified AWS account credentials provider and executor service.
AmazonElasticTranscoderClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new client to invoke service methods on AmazonElasticTranscoder using the specified AWS account credentials provider.
AmazonElasticTranscoderClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new client to invoke service methods on AmazonElasticTranscoder using the specified AWS account credentials provider and client configuration options.
AmazonElasticTranscoderClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
          Constructs a new client to invoke service methods on AmazonElasticTranscoder using the specified AWS account credentials provider, client configuration options and request metric collector.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.glacier
 

Constructors in com.amazonaws.services.glacier with parameters of type AWSCredentialsProvider
AmazonGlacierAsyncClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new asynchronous client to invoke service methods on AmazonGlacier using the specified AWS account credentials provider.
AmazonGlacierAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new asynchronous client to invoke service methods on AmazonGlacier using the specified AWS account credentials provider and client configuration options.
AmazonGlacierAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonGlacier using the specified AWS account credentials provider, executor service, and client configuration options.
AmazonGlacierAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonGlacier using the specified AWS account credentials provider and executor service.
AmazonGlacierClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new client to invoke service methods on AmazonGlacier using the specified AWS account credentials provider.
AmazonGlacierClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new client to invoke service methods on AmazonGlacier using the specified AWS account credentials provider and client configuration options.
AmazonGlacierClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
          Constructs a new client to invoke service methods on AmazonGlacier using the specified AWS account credentials provider, client configuration options and request metric collector.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.glacier.transfer
 

Constructors in com.amazonaws.services.glacier.transfer with parameters of type AWSCredentialsProvider
ArchiveTransferManager(AmazonGlacierClient glacier, AWSCredentialsProvider credentialsProvider)
          Constructs a new ArchiveTransferManager, using the specified Amazon Glacier client and AWS credentials provider.
ArchiveTransferManager(AmazonGlacierClient glacier, AWSCredentialsProvider credentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new ArchiveTransferManager, using the specified Amazon Glacier client, AWS credentials provider and client configuration.
ArchiveTransferManager(AWSCredentialsProvider credentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new ArchiveTransferManager, using the specified AWS credentials provider and client configuration.
JobStatusMonitor(AWSCredentialsProvider credentialsProvider, ClientConfiguration clientConfiguration)
           
 

Uses of AWSCredentialsProvider in com.amazonaws.services.identitymanagement
 

Constructors in com.amazonaws.services.identitymanagement with parameters of type AWSCredentialsProvider
AmazonIdentityManagementAsyncClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new asynchronous client to invoke service methods on AmazonIdentityManagement using the specified AWS account credentials provider.
AmazonIdentityManagementAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new asynchronous client to invoke service methods on AmazonIdentityManagement using the specified AWS account credentials provider and client configuration options.
AmazonIdentityManagementAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonIdentityManagement using the specified AWS account credentials provider, executor service, and client configuration options.
AmazonIdentityManagementAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonIdentityManagement using the specified AWS account credentials provider and executor service.
AmazonIdentityManagementClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new client to invoke service methods on AmazonIdentityManagement using the specified AWS account credentials provider.
AmazonIdentityManagementClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new client to invoke service methods on AmazonIdentityManagement using the specified AWS account credentials provider and client configuration options.
AmazonIdentityManagementClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
          Constructs a new client to invoke service methods on AmazonIdentityManagement using the specified AWS account credentials provider, client configuration options, and request metric collector.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.importexport
 

Constructors in com.amazonaws.services.importexport with parameters of type AWSCredentialsProvider
AmazonImportExportAsyncClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new asynchronous client to invoke service methods on AmazonImportExport using the specified AWS account credentials provider.
AmazonImportExportAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new asynchronous client to invoke service methods on AmazonImportExport using the specified AWS account credentials provider and client configuration options.
AmazonImportExportAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonImportExport using the specified AWS account credentials provider, executor service, and client configuration options.
AmazonImportExportAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonImportExport using the specified AWS account credentials provider and executor service.
AmazonImportExportClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new client to invoke service methods on AmazonImportExport using the specified AWS account credentials provider.
AmazonImportExportClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new client to invoke service methods on AmazonImportExport using the specified AWS account credentials provider and client configuration options.
AmazonImportExportClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
          Constructs a new client to invoke service methods on AmazonImportExport using the specified AWS account credentials provider, client configuration options, and request metric collector.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.kinesis
 

Constructors in com.amazonaws.services.kinesis with parameters of type AWSCredentialsProvider
AmazonKinesisAsyncClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new asynchronous client to invoke service methods on AmazonKinesis using the specified AWS account credentials provider.
AmazonKinesisAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new asynchronous client to invoke service methods on AmazonKinesis using the specified AWS account credentials provider and client configuration options.
AmazonKinesisAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonKinesis using the specified AWS account credentials provider, executor service, and client configuration options.
AmazonKinesisAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonKinesis using the specified AWS account credentials provider and executor service.
AmazonKinesisClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new client to invoke service methods on AmazonKinesis using the specified AWS account credentials provider.
AmazonKinesisClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new client to invoke service methods on AmazonKinesis using the specified AWS account credentials provider and client configuration options.
AmazonKinesisClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
          Constructs a new client to invoke service methods on AmazonKinesis using the specified AWS account credentials provider, client configuration options and request metric collector.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.opsworks
 

Constructors in com.amazonaws.services.opsworks with parameters of type AWSCredentialsProvider
AWSOpsWorksAsyncClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new asynchronous client to invoke service methods on AWSOpsWorks using the specified AWS account credentials provider.
AWSOpsWorksAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new asynchronous client to invoke service methods on AWSOpsWorks using the specified AWS account credentials provider and client configuration options.
AWSOpsWorksAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AWSOpsWorks using the specified AWS account credentials provider, executor service, and client configuration options.
AWSOpsWorksAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AWSOpsWorks using the specified AWS account credentials provider and executor service.
AWSOpsWorksClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new client to invoke service methods on AWSOpsWorks using the specified AWS account credentials provider.
AWSOpsWorksClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new client to invoke service methods on AWSOpsWorks using the specified AWS account credentials provider and client configuration options.
AWSOpsWorksClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
          Constructs a new client to invoke service methods on AWSOpsWorks using the specified AWS account credentials provider, client configuration options and request metric collector.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.rds
 

Constructors in com.amazonaws.services.rds with parameters of type AWSCredentialsProvider
AmazonRDSAsyncClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new asynchronous client to invoke service methods on AmazonRDS using the specified AWS account credentials provider.
AmazonRDSAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new asynchronous client to invoke service methods on AmazonRDS using the specified AWS account credentials provider and client configuration options.
AmazonRDSAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonRDS using the specified AWS account credentials provider, executor service, and client configuration options.
AmazonRDSAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonRDS using the specified AWS account credentials provider and executor service.
AmazonRDSClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new client to invoke service methods on AmazonRDS using the specified AWS account credentials provider.
AmazonRDSClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new client to invoke service methods on AmazonRDS using the specified AWS account credentials provider and client configuration options.
AmazonRDSClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
          Constructs a new client to invoke service methods on AmazonRDS using the specified AWS account credentials provider, client configuration options, and request metric collector.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.redshift
 

Constructors in com.amazonaws.services.redshift with parameters of type AWSCredentialsProvider
AmazonRedshiftAsyncClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new asynchronous client to invoke service methods on AmazonRedshift using the specified AWS account credentials provider.
AmazonRedshiftAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new asynchronous client to invoke service methods on AmazonRedshift using the specified AWS account credentials provider and client configuration options.
AmazonRedshiftAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonRedshift using the specified AWS account credentials provider, executor service, and client configuration options.
AmazonRedshiftAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonRedshift using the specified AWS account credentials provider and executor service.
AmazonRedshiftClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new client to invoke service methods on AmazonRedshift using the specified AWS account credentials provider.
AmazonRedshiftClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new client to invoke service methods on AmazonRedshift using the specified AWS account credentials provider and client configuration options.
AmazonRedshiftClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
          Constructs a new client to invoke service methods on AmazonRedshift using the specified AWS account credentials provider, client configuration options, and request metric collector.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.route53
 

Constructors in com.amazonaws.services.route53 with parameters of type AWSCredentialsProvider
AmazonRoute53AsyncClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new asynchronous client to invoke service methods on AmazonRoute53 using the specified AWS account credentials provider.
AmazonRoute53AsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new asynchronous client to invoke service methods on AmazonRoute53 using the specified AWS account credentials provider and client configuration options.
AmazonRoute53AsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonRoute53 using the specified AWS account credentials provider, executor service, and client configuration options.
AmazonRoute53AsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonRoute53 using the specified AWS account credentials provider and executor service.
AmazonRoute53Client(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new client to invoke service methods on AmazonRoute53 using the specified AWS account credentials provider.
AmazonRoute53Client(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new client to invoke service methods on AmazonRoute53 using the specified AWS account credentials provider and client configuration options.
AmazonRoute53Client(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
          Constructs a new client to invoke service methods on AmazonRoute53 using the specified AWS account credentials provider, client configuration options, and request metric collector.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.s3
 

Constructors in com.amazonaws.services.s3 with parameters of type AWSCredentialsProvider
AmazonS3Client(AWSCredentialsProvider credentialsProvider)
          Constructs a new Amazon S3 client using the specified AWS credentials provider to access Amazon S3.
AmazonS3Client(AWSCredentialsProvider credentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new Amazon S3 client using the specified AWS credentials and client configuration to access Amazon S3.
AmazonS3Client(AWSCredentialsProvider credentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
          Constructs a new Amazon S3 client using the specified AWS credentials, client configuration and request metric collector to access Amazon S3.
AmazonS3EncryptionClient(AWSCredentialsProvider credentialsProvider, EncryptionMaterialsProvider encryptionMaterialsProvider)
           Constructs a new Amazon S3 Encryption client using the specified AWS credentials to access Amazon S3.
AmazonS3EncryptionClient(AWSCredentialsProvider credentialsProvider, EncryptionMaterialsProvider kekMaterialsProvider, ClientConfiguration clientConfig, CryptoConfiguration cryptoConfig)
           
AmazonS3EncryptionClient(AWSCredentialsProvider credentialsProvider, EncryptionMaterialsProvider encryptionMaterialsProvider, CryptoConfiguration cryptoConfig)
           Constructs a new Amazon S3 Encryption client using the specified AWS credentials to access Amazon S3.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.s3.transfer
 

Constructors in com.amazonaws.services.s3.transfer with parameters of type AWSCredentialsProvider
TransferManager(AWSCredentialsProvider credentialsProvider)
          Constructs a new TransferManager and Amazon S3 client using the specified AWS security credentials provider.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.securitytoken
 

Constructors in com.amazonaws.services.securitytoken with parameters of type AWSCredentialsProvider
AWSSecurityTokenServiceAsyncClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new asynchronous client to invoke service methods on AWSSecurityTokenService using the specified AWS account credentials provider.
AWSSecurityTokenServiceAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new asynchronous client to invoke service methods on AWSSecurityTokenService using the specified AWS account credentials provider and client configuration options.
AWSSecurityTokenServiceAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AWSSecurityTokenService using the specified AWS account credentials provider, executor service, and client configuration options.
AWSSecurityTokenServiceAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AWSSecurityTokenService using the specified AWS account credentials provider and executor service.
AWSSecurityTokenServiceClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new client to invoke service methods on AWSSecurityTokenService using the specified AWS account credentials provider.
AWSSecurityTokenServiceClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new client to invoke service methods on AWSSecurityTokenService using the specified AWS account credentials provider and client configuration options.
AWSSecurityTokenServiceClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
          Constructs a new client to invoke service methods on AWSSecurityTokenService using the specified AWS account credentials provider, client configuration options, and request metric collector.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.simpledb
 

Constructors in com.amazonaws.services.simpledb with parameters of type AWSCredentialsProvider
AmazonSimpleDBAsyncClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new asynchronous client to invoke service methods on AmazonSimpleDB using the specified AWS account credentials provider.
AmazonSimpleDBAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new asynchronous client to invoke service methods on AmazonSimpleDB using the specified AWS account credentials provider and client configuration options.
AmazonSimpleDBAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonSimpleDB using the specified AWS account credentials provider, executor service, and client configuration options.
AmazonSimpleDBAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonSimpleDB using the specified AWS account credentials provider and executor service.
AmazonSimpleDBClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new client to invoke service methods on AmazonSimpleDB using the specified AWS account credentials provider.
AmazonSimpleDBClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new client to invoke service methods on AmazonSimpleDB using the specified AWS account credentials provider and client configuration options.
AmazonSimpleDBClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
          Constructs a new client to invoke service methods on AmazonSimpleDB using the specified AWS account credentials provider, client configuration options, and request metric collector.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.simpleemail
 

Constructors in com.amazonaws.services.simpleemail with parameters of type AWSCredentialsProvider
AmazonSimpleEmailServiceAsyncClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new asynchronous client to invoke service methods on AmazonSimpleEmailService using the specified AWS account credentials provider.
AmazonSimpleEmailServiceAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new asynchronous client to invoke service methods on AmazonSimpleEmailService using the specified AWS account credentials provider and client configuration options.
AmazonSimpleEmailServiceAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonSimpleEmailService using the specified AWS account credentials provider, executor service, and client configuration options.
AmazonSimpleEmailServiceAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonSimpleEmailService using the specified AWS account credentials provider and executor service.
AmazonSimpleEmailServiceClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new client to invoke service methods on AmazonSimpleEmailService using the specified AWS account credentials provider.
AmazonSimpleEmailServiceClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new client to invoke service methods on AmazonSimpleEmailService using the specified AWS account credentials provider and client configuration options.
AmazonSimpleEmailServiceClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
          Constructs a new client to invoke service methods on AmazonSimpleEmailService using the specified AWS account credentials provider, client configuration options, and request metric collector.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.simpleworkflow
 

Constructors in com.amazonaws.services.simpleworkflow with parameters of type AWSCredentialsProvider
AmazonSimpleWorkflowAsyncClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new asynchronous client to invoke service methods on AmazonSimpleWorkflow using the specified AWS account credentials provider.
AmazonSimpleWorkflowAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new asynchronous client to invoke service methods on AmazonSimpleWorkflow using the specified AWS account credentials provider and client configuration options.
AmazonSimpleWorkflowAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonSimpleWorkflow using the specified AWS account credentials provider, executor service, and client configuration options.
AmazonSimpleWorkflowAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonSimpleWorkflow using the specified AWS account credentials provider and executor service.
AmazonSimpleWorkflowClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new client to invoke service methods on AmazonSimpleWorkflow using the specified AWS account credentials provider.
AmazonSimpleWorkflowClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new client to invoke service methods on AmazonSimpleWorkflow using the specified AWS account credentials provider and client configuration options.
AmazonSimpleWorkflowClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
          Constructs a new client to invoke service methods on AmazonSimpleWorkflow using the specified AWS account credentials provider, client configuration options and request metric collector.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.sns
 

Constructors in com.amazonaws.services.sns with parameters of type AWSCredentialsProvider
AmazonSNSAsyncClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new asynchronous client to invoke service methods on AmazonSNS using the specified AWS account credentials provider.
AmazonSNSAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new asynchronous client to invoke service methods on AmazonSNS using the specified AWS account credentials provider and client configuration options.
AmazonSNSAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonSNS using the specified AWS account credentials provider, executor service, and client configuration options.
AmazonSNSAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonSNS using the specified AWS account credentials provider and executor service.
AmazonSNSClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new client to invoke service methods on AmazonSNS using the specified AWS account credentials provider.
AmazonSNSClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new client to invoke service methods on AmazonSNS using the specified AWS account credentials provider and client configuration options.
AmazonSNSClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
          Constructs a new client to invoke service methods on AmazonSNS using the specified AWS account credentials provider, client configuration options, and request metric collector.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.sqs
 

Constructors in com.amazonaws.services.sqs with parameters of type AWSCredentialsProvider
AmazonSQSAsyncClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new asynchronous client to invoke service methods on AmazonSQS using the specified AWS account credentials provider.
AmazonSQSAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new asynchronous client to invoke service methods on AmazonSQS using the specified AWS account credentials provider and client configuration options.
AmazonSQSAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonSQS using the specified AWS account credentials provider, executor service, and client configuration options.
AmazonSQSAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AmazonSQS using the specified AWS account credentials provider and executor service.
AmazonSQSClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new client to invoke service methods on AmazonSQS using the specified AWS account credentials provider.
AmazonSQSClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new client to invoke service methods on AmazonSQS using the specified AWS account credentials provider and client configuration options.
AmazonSQSClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
          Constructs a new client to invoke service methods on AmazonSQS using the specified AWS account credentials provider, client configuration options, and request metric collector.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.storagegateway
 

Constructors in com.amazonaws.services.storagegateway with parameters of type AWSCredentialsProvider
AWSStorageGatewayAsyncClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new asynchronous client to invoke service methods on AWSStorageGateway using the specified AWS account credentials provider.
AWSStorageGatewayAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new asynchronous client to invoke service methods on AWSStorageGateway using the specified AWS account credentials provider and client configuration options.
AWSStorageGatewayAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AWSStorageGateway using the specified AWS account credentials provider, executor service, and client configuration options.
AWSStorageGatewayAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AWSStorageGateway using the specified AWS account credentials provider and executor service.
AWSStorageGatewayClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new client to invoke service methods on AWSStorageGateway using the specified AWS account credentials provider.
AWSStorageGatewayClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new client to invoke service methods on AWSStorageGateway using the specified AWS account credentials provider and client configuration options.
AWSStorageGatewayClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
          Constructs a new client to invoke service methods on AWSStorageGateway using the specified AWS account credentials provider, client configuration options and request metric collector.
 

Uses of AWSCredentialsProvider in com.amazonaws.services.support
 

Constructors in com.amazonaws.services.support with parameters of type AWSCredentialsProvider
AWSSupportAsyncClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new asynchronous client to invoke service methods on AWSSupport using the specified AWS account credentials provider.
AWSSupportAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new asynchronous client to invoke service methods on AWSSupport using the specified AWS account credentials provider and client configuration options.
AWSSupportAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AWSSupport using the specified AWS account credentials provider, executor service, and client configuration options.
AWSSupportAsyncClient(AWSCredentialsProvider awsCredentialsProvider, ExecutorService executorService)
          Constructs a new asynchronous client to invoke service methods on AWSSupport using the specified AWS account credentials provider and executor service.
AWSSupportClient(AWSCredentialsProvider awsCredentialsProvider)
          Constructs a new client to invoke service methods on AWSSupport using the specified AWS account credentials provider.
AWSSupportClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
          Constructs a new client to invoke service methods on AWSSupport using the specified AWS account credentials provider and client configuration options.
AWSSupportClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
          Constructs a new client to invoke service methods on AWSSupport using the specified AWS account credentials provider, client configuration options and request metric collector.
 



Copyright © 2016. All rights reserved.