Modifier and Type | Field and Description |
---|---|
protected ClientConfiguration |
AmazonWebServiceClient.clientConfiguration
The client configuration
|
Modifier and Type | Method and Description |
---|---|
static ClientConfiguration |
PredefinedClientConfigurations.defaultConfig()
Factory method for default
ClientConfiguration for all services unless otherwise
specified |
static ClientConfiguration |
PredefinedClientConfigurations.dynamoDefault()
Factory method for DynamoDB's default
ClientConfiguration |
static ClientConfiguration |
PredefinedClientConfigurations.swfDefault()
Factory method for Simple Workflow's default
ClientConfiguration |
ClientConfiguration |
ClientConfiguration.withConnectionMaxIdleMillis(long connectionMaxIdleMillis)
Sets the maximum amount of time that an idle connection may sit in
the connection pool and still be eligible for reuse.
|
ClientConfiguration |
ClientConfiguration.withConnectionTimeout(int connectionTimeout)
Sets the amount of time to wait (in milliseconds) when initially
establishing a connection before giving up and timing out, and returns
the updated ClientConfiguration object so that additional method calls
may be chained together.
|
ClientConfiguration |
ClientConfiguration.withConnectionTTL(long connectionTTL)
Sets the expiration time (in milliseconds) for a connection in the
connection pool.
|
ClientConfiguration |
ClientConfiguration.withDnsResolver(DnsResolver resolver)
Sets the DNS Resolver that should be used to for resolving AWS IP addresses.
|
ClientConfiguration |
ClientConfiguration.withGzip(boolean use)
Sets whether gzip compression should be used
|
ClientConfiguration |
ClientConfiguration.withLocalAddress(InetAddress localAddress)
Sets the optional local address the client will bind to and returns
the updated ClientConfiguration object.
|
ClientConfiguration |
ClientConfiguration.withMaxConnections(int maxConnections)
Sets the maximum number of allowed open HTTP connections and returns the
updated ClientConfiguration object.
|
ClientConfiguration |
ClientConfiguration.withMaxErrorRetry(int maxErrorRetry)
Sets the maximum number of retry attempts for failed retryable requests
(ex: 5xx error responses from services), and returns the updated
ClientConfiguration object.
|
ClientConfiguration |
ClientConfiguration.withPreemptiveBasicProxyAuth(boolean preemptiveBasicProxyAuth)
Sets whether to attempt to authenticate preemptively against proxy
servers using basic authentication, and returns the updated
ClientConfiguration object so that additional method calls may be chained
together.
|
ClientConfiguration |
ClientConfiguration.withProtocol(Protocol protocol)
Sets the protocol (i.e.
|
ClientConfiguration |
ClientConfiguration.withProxyDomain(String proxyDomain)
Sets the optional Windows domain name for configuration an NTLM proxy and
returns a reference to this updated ClientConfiguration object so that
additional method calls can be chained together.
|
ClientConfiguration |
ClientConfiguration.withProxyHost(String proxyHost)
Sets the optional proxy host the client will connect through and returns
the updated ClientConfiguration object.
|
ClientConfiguration |
ClientConfiguration.withProxyPassword(String proxyPassword)
Sets the optional proxy password to use when connecting through a proxy,
and returns the updated ClientConfiguration object.
|
ClientConfiguration |
ClientConfiguration.withProxyPort(int proxyPort)
Sets the optional proxy port the client will connect through and returns
the updated ClientConfiguration object.
|
ClientConfiguration |
ClientConfiguration.withProxyUsername(String proxyUsername)
Sets the optional proxy user name and returns the updated
ClientConfiguration object.
|
ClientConfiguration |
ClientConfiguration.withProxyWorkstation(String proxyWorkstation)
Sets the optional Windows workstation name for configuring NTLM proxy
support, and returns the updated ClientConfiguration object so that
additional method calls can be chained together.
|
ClientConfiguration |
ClientConfiguration.withReaper(boolean use)
Sets whether the
IdleConnectionReaper is to be started as a daemon thread |
ClientConfiguration |
ClientConfiguration.withRequestTimeout(int requestTimeout)
Sets the amount of time to wait (in milliseconds) for the request
to complete before giving up and timing out.
|
ClientConfiguration |
ClientConfiguration.withResponseMetadataCacheSize(int responseMetadataCacheSize)
Sets the response metadata cache size.
|
ClientConfiguration |
ClientConfiguration.withRetryPolicy(RetryPolicy retryPolicy)
Sets the retry policy upon failed requests, and returns the updated
ClientConfiguration object.
|
ClientConfiguration |
ClientConfiguration.withSecureRandom(SecureRandom secureRandom)
Fluent API for
setSecureRandom(SecureRandom) . |
ClientConfiguration |
ClientConfiguration.withSignerOverride(String value)
Sets the name of the signature algorithm to use for signing requests
made by this client.
|
ClientConfiguration |
ClientConfiguration.withSocketBufferSizeHints(int socketSendBufferSizeHint,
int socketReceiveBufferSizeHint)
Sets the optional size hints (in bytes) for the low level TCP send and
receive buffers, and returns the updated ClientConfiguration object so
that additional method calls may be chained together.
|
ClientConfiguration |
ClientConfiguration.withSocketTimeout(int socketTimeout)
Sets the amount of time to wait (in milliseconds) for data to be
transfered over an established, open connection before the connection
times out and is closed, and returns the updated ClientConfiguration
object so that additional method calls may be chained together.
|
ClientConfiguration |
ClientConfiguration.withTcpKeepAlive(boolean use)
Sets whether or not to enable TCP KeepAlive support at the socket level.
|
ClientConfiguration |
ClientConfiguration.withUserAgent(String userAgent)
Sets the HTTP user agent header used in requests and returns the updated
ClientConfiguration object.
|
Constructor and Description |
---|
AmazonWebServiceClient(ClientConfiguration clientConfiguration)
Constructs a new AmazonWebServiceClient object using the specified
configuration.
|
AmazonWebServiceClient(ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new AmazonWebServiceClient object using the specified
configuration and request metric collector.
|
ClientConfiguration(ClientConfiguration other) |
Modifier and Type | Method and Description |
---|---|
static STSSessionCredentialsProvider |
SessionCredentialsProviderFactory.getSessionCredentialsProvider(AWSCredentials longTermCredentials,
String serviceEndpoint,
ClientConfiguration stsClientConfiguration)
Gets a session credentials provider for the long-term credentials and
service endpoint given.
|
STSAssumeRoleSessionCredentialsProvider.Builder |
STSAssumeRoleSessionCredentialsProvider.Builder.withClientConfiguration(ClientConfiguration clientConfiguration)
Set the client configuration used to create the AWSSecurityTokenService
|
Constructor and Description |
---|
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. |
STSAssumeRoleSessionCredentialsProvider(AWSCredentials longLivedCredentials,
String roleArn,
String roleSessionName,
ClientConfiguration clientConfiguration)
Constructs a new STSAssumeRoleSessionCredentialsProvider, which will use
the specified 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(AWSCredentials longLivedCredentials,
ClientConfiguration clientConfiguration)
Constructs a new STSSessionCredentialsProvider, which will use the
specified 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. |
WebIdentityFederationSessionCredentialsProvider(String wifToken,
String wifProvider,
String roleArn,
ClientConfiguration clientConfiguration)
Constructs a new WebIdentityFederationSessionCredentialsProvider, which will use the
specified 3rd-party web identity provider 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
WebIdentityFederationSessionCredentialsProvider.getCredentials()
method. |
Constructor and Description |
---|
AmazonHttpClient(ClientConfiguration config)
Constructs a new AWS client using the specified client configuration
options (ex: max retry attempts, proxy settings, etc).
|
AmazonHttpClient(ClientConfiguration config,
RequestMetricCollector requestMetricCollector)
Constructs a new AWS client using the specified client configuration
options (ex: max retry attempts, proxy settings, etc), and request metric
collector.
|
HttpRequestTimer(ClientConfiguration config) |
Modifier and Type | Method and Description |
---|---|
<T extends AmazonWebServiceClient> |
Region.createClient(Class<T> serviceClass,
AWSCredentialsProvider credentials,
ClientConfiguration config)
Creates a new service client of the class given and configures it.
|
static void |
RegionUtils.initializeFromURI(URI uri,
ClientConfiguration config)
Loads a set of region metadata by downloading an XML file from the
given URI and parsing it.
|
static RegionMetadata |
RegionUtils.loadMetadataFromURI(URI uri,
ClientConfiguration config)
Loads a set of region metadata by downloading an XML file from the
given URI and parsing it.
|
Constructor and Description |
---|
AmazonAutoScalingAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
AmazonAutoScaling using the specified AWS account credentials,
executor service, and client configuration options.
|
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(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
AmazonAutoScaling.
|
AmazonAutoScalingClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonAutoScaling using the specified AWS account credentials
and client configuration options.
|
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.
|
AmazonAutoScalingClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonAutoScaling.
|
Constructor and Description |
---|
AmazonCloudFormationAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
AmazonCloudFormation using the specified AWS account credentials,
executor service, and client configuration options.
|
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(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
AmazonCloudFormation.
|
AmazonCloudFormationClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonCloudFormation using the specified AWS account credentials
and client configuration options.
|
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.
|
AmazonCloudFormationClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonCloudFormation.
|
Constructor and Description |
---|
AmazonCloudFrontAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
AmazonCloudFront using the specified AWS account credentials,
executor service, and client configuration options.
|
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(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
AmazonCloudFront.
|
AmazonCloudFrontClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonCloudFront using the specified AWS account credentials
and client configuration options.
|
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.
|
AmazonCloudFrontClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonCloudFront.
|
Constructor and Description |
---|
AmazonCloudFrontAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Deprecated.
Constructs a new asynchronous client to invoke service methods on
AmazonCloudFront using the specified AWS account credentials,
executor service, and client configuration options.
|
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.
|
AmazonCloudFrontClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Deprecated.
Constructs a new client to invoke service methods on
AmazonCloudFront using the specified AWS account credentials
and client configuration options.
|
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.
|
Constructor and Description |
---|
AWSCloudHSMAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
CloudHSM using the specified AWS account credentials, executor service,
and client configuration options.
|
AWSCloudHSMAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
CloudHSM using the provided AWS account credentials provider and client
configuration options.
|
AWSCloudHSMAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
CloudHSM using the specified AWS account credentials provider, executor
service, and client configuration options.
|
AWSCloudHSMAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
CloudHSM.
|
AWSCloudHSMClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on CloudHSM using the
specified AWS account credentials and client configuration options.
|
AWSCloudHSMClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on CloudHSM using the
specified AWS account credentials provider and client configuration
options.
|
AWSCloudHSMClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on CloudHSM using the
specified AWS account credentials provider, client configuration options,
and request metric collector.
|
AWSCloudHSMClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on CloudHSM.
|
Constructor and Description |
---|
AmazonCloudSearchAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Deprecated.
Constructs a new asynchronous client to invoke service methods on
AmazonCloudSearch using the specified AWS account credentials,
executor service, and client configuration options.
|
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(ClientConfiguration clientConfiguration)
Deprecated.
Constructs a new asynchronous client to invoke service methods on
AmazonCloudSearch.
|
AmazonCloudSearchClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Deprecated.
Constructs a new client to invoke service methods on
AmazonCloudSearch using the specified AWS account credentials
and client configuration options.
|
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.
|
AmazonCloudSearchClient(ClientConfiguration clientConfiguration)
Deprecated.
Constructs a new client to invoke service methods on
AmazonCloudSearch.
|
Constructor and Description |
---|
AmazonCloudSearchDomainAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
AmazonCloudSearchDomain using the specified AWS account credentials,
executor service, and client configuration options.
|
AmazonCloudSearchDomainAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
AmazonCloudSearchDomain using the specified AWS account credentials
provider and client configuration options.
|
AmazonCloudSearchDomainAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
AmazonCloudSearchDomain using the specified AWS account credentials
provider, executor service, and client configuration options.
|
AmazonCloudSearchDomainAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
AmazonCloudSearchDomain.
|
AmazonCloudSearchDomainClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonCloudSearchDomain using the specified AWS account credentials
and client configuration options.
|
AmazonCloudSearchDomainClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonCloudSearchDomain using the specified AWS account credentials
provider and client configuration options.
|
AmazonCloudSearchDomainClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on
AmazonCloudSearchDomain using the specified AWS account credentials
provider, client configuration options and request metric collector.
|
AmazonCloudSearchDomainClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonCloudSearchDomain.
|
Constructor and Description |
---|
AmazonCloudSearchAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
AmazonCloudSearchv2 using the specified AWS account credentials,
executor service, and client configuration options.
|
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(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
AmazonCloudSearchv2.
|
AmazonCloudSearchClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonCloudSearchv2 using the specified AWS account credentials
and client configuration options.
|
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.
|
AmazonCloudSearchClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonCloudSearchv2.
|
Constructor and Description |
---|
AWSCloudTrailAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
CloudTrail using the specified AWS account credentials, executor service,
and client configuration options.
|
AWSCloudTrailAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
CloudTrail using the provided 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
CloudTrail using the specified AWS account credentials provider, executor
service, and client configuration options.
|
AWSCloudTrailAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
CloudTrail.
|
AWSCloudTrailClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on CloudTrail using the
specified AWS account credentials and client configuration options.
|
AWSCloudTrailClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on CloudTrail 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 CloudTrail using the
specified AWS account credentials provider, client configuration options,
and request metric collector.
|
AWSCloudTrailClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on CloudTrail.
|
Constructor and Description |
---|
AmazonCloudWatchAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
AmazonCloudWatch using the specified AWS account credentials,
executor service, and client configuration options.
|
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(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
AmazonCloudWatch.
|
AmazonCloudWatchClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonCloudWatch using the specified AWS account credentials
and client configuration options.
|
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.
|
AmazonCloudWatchClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonCloudWatch.
|
Constructor and Description |
---|
AWSCodeCommitAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
CodeCommit using the specified AWS account credentials, executor service,
and client configuration options.
|
AWSCodeCommitAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
CodeCommit using the provided AWS account credentials provider and client
configuration options.
|
AWSCodeCommitAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
CodeCommit using the specified AWS account credentials provider, executor
service, and client configuration options.
|
AWSCodeCommitAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
CodeCommit.
|
AWSCodeCommitClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on CodeCommit using the
specified AWS account credentials and client configuration options.
|
AWSCodeCommitClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on CodeCommit using the
specified AWS account credentials provider and client configuration
options.
|
AWSCodeCommitClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on CodeCommit using the
specified AWS account credentials provider, client configuration options,
and request metric collector.
|
AWSCodeCommitClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on CodeCommit.
|
Constructor and Description |
---|
AmazonCodeDeployAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
CodeDeploy using the specified AWS account credentials, executor service,
and client configuration options.
|
AmazonCodeDeployAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
CodeDeploy using the provided AWS account credentials provider and client
configuration options.
|
AmazonCodeDeployAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
CodeDeploy using the specified AWS account credentials provider, executor
service, and client configuration options.
|
AmazonCodeDeployAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
CodeDeploy.
|
AmazonCodeDeployClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on CodeDeploy using the
specified AWS account credentials and client configuration options.
|
AmazonCodeDeployClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on CodeDeploy using the
specified AWS account credentials provider and client configuration
options.
|
AmazonCodeDeployClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on CodeDeploy using the
specified AWS account credentials provider, client configuration options,
and request metric collector.
|
AmazonCodeDeployClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on CodeDeploy.
|
Constructor and Description |
---|
AWSCodePipelineAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
CodePipeline using the specified AWS account credentials, executor
service, and client configuration options.
|
AWSCodePipelineAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
CodePipeline using the provided AWS account credentials provider and
client configuration options.
|
AWSCodePipelineAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
CodePipeline using the specified AWS account credentials provider,
executor service, and client configuration options.
|
AWSCodePipelineAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
CodePipeline.
|
AWSCodePipelineClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on CodePipeline using
the specified AWS account credentials and client configuration options.
|
AWSCodePipelineClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on CodePipeline using
the specified AWS account credentials provider and client configuration
options.
|
AWSCodePipelineClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on CodePipeline using
the specified AWS account credentials provider, client configuration
options, and request metric collector.
|
AWSCodePipelineClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on CodePipeline.
|
Constructor and Description |
---|
AmazonCognitoIdentityAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
Cognito Identity using the specified AWS account credentials, executor
service, and client configuration options.
|
AmazonCognitoIdentityAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Amazon
Cognito Identity using the provided AWS account credentials provider and
client configuration options.
|
AmazonCognitoIdentityAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
Cognito Identity using the specified AWS account credentials provider,
executor service, and client configuration options.
|
AmazonCognitoIdentityAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Amazon
Cognito Identity.
|
AmazonCognitoIdentityClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon Cognito
Identity using the specified AWS account credentials and client
configuration options.
|
AmazonCognitoIdentityClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon Cognito
Identity using the specified AWS account credentials provider and client
configuration options.
|
AmazonCognitoIdentityClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on Amazon Cognito
Identity using the specified AWS account credentials provider, client
configuration options, and request metric collector.
|
AmazonCognitoIdentityClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon Cognito
Identity.
|
Constructor and Description |
---|
AmazonCognitoSyncAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
AmazonCognitoSync using the specified AWS account credentials,
executor service, and client configuration options.
|
AmazonCognitoSyncAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
AmazonCognitoSync using the specified AWS account credentials
provider and client configuration options.
|
AmazonCognitoSyncAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
AmazonCognitoSync using the specified AWS account credentials
provider, executor service, and client configuration options.
|
AmazonCognitoSyncAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
AmazonCognitoSync.
|
AmazonCognitoSyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonCognitoSync using the specified AWS account credentials
and client configuration options.
|
AmazonCognitoSyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonCognitoSync using the specified AWS account credentials
provider and client configuration options.
|
AmazonCognitoSyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on
AmazonCognitoSync using the specified AWS account credentials
provider, client configuration options and request metric collector.
|
AmazonCognitoSyncClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonCognitoSync.
|
Constructor and Description |
---|
AmazonConfigAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Config
Service using the specified AWS account credentials, executor service,
and client configuration options.
|
AmazonConfigAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Config
Service using the provided AWS account credentials provider and client
configuration options.
|
AmazonConfigAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Config
Service using the specified AWS account credentials provider, executor
service, and client configuration options.
|
AmazonConfigAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Config
Service.
|
AmazonConfigClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Config Service using
the specified AWS account credentials and client configuration options.
|
AmazonConfigClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Config Service using
the specified AWS account credentials provider and client configuration
options.
|
AmazonConfigClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on Config Service using
the specified AWS account credentials provider, client configuration
options, and request metric collector.
|
AmazonConfigClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Config Service.
|
Constructor and Description |
---|
DataPipelineAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on AWS
Data Pipeline using the specified AWS account credentials, executor
service, and client configuration options.
|
DataPipelineAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on AWS
Data Pipeline using the provided 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 AWS
Data Pipeline using the specified AWS account credentials provider,
executor service, and client configuration options.
|
DataPipelineAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on AWS
Data Pipeline.
|
DataPipelineClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS Data Pipeline
using the specified AWS account credentials and client configuration
options.
|
DataPipelineClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS Data Pipeline
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 AWS Data Pipeline
using the specified AWS account credentials provider, client
configuration options, and request metric collector.
|
DataPipelineClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS Data Pipeline.
|
Constructor and Description |
---|
AWSDeviceFarmAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on AWS
Device Farm using the specified AWS account credentials, executor
service, and client configuration options.
|
AWSDeviceFarmAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on AWS
Device Farm using the provided AWS account credentials provider and
client configuration options.
|
AWSDeviceFarmAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on AWS
Device Farm using the specified AWS account credentials provider,
executor service, and client configuration options.
|
AWSDeviceFarmAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on AWS
Device Farm.
|
AWSDeviceFarmClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS Device Farm
using the specified AWS account credentials and client configuration
options.
|
AWSDeviceFarmClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS Device Farm
using the specified AWS account credentials provider and client
configuration options.
|
AWSDeviceFarmClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on AWS Device Farm
using the specified AWS account credentials provider, client
configuration options, and request metric collector.
|
AWSDeviceFarmClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS Device Farm.
|
Constructor and Description |
---|
AmazonDirectConnectAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on AWS
Direct Connect using the specified AWS account credentials, executor
service, and client configuration options.
|
AmazonDirectConnectAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on AWS
Direct Connect using the provided 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 AWS
Direct Connect using the specified AWS account credentials provider,
executor service, and client configuration options.
|
AmazonDirectConnectAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on AWS
Direct Connect.
|
AmazonDirectConnectClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS Direct Connect
using the specified AWS account credentials and client configuration
options.
|
AmazonDirectConnectClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS Direct Connect
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 AWS Direct Connect
using the specified AWS account credentials provider, client
configuration options, and request metric collector.
|
AmazonDirectConnectClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS Direct Connect.
|
Constructor and Description |
---|
AWSDirectoryServiceAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
Directory Service using the specified AWS account credentials, executor
service, and client configuration options.
|
AWSDirectoryServiceAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
Directory Service using the provided AWS account credentials provider and
client configuration options.
|
AWSDirectoryServiceAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
Directory Service using the specified AWS account credentials provider,
executor service, and client configuration options.
|
AWSDirectoryServiceAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
Directory Service.
|
AWSDirectoryServiceClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Directory Service
using the specified AWS account credentials and client configuration
options.
|
AWSDirectoryServiceClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Directory Service
using the specified AWS account credentials provider and client
configuration options.
|
AWSDirectoryServiceClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on Directory Service
using the specified AWS account credentials provider, client
configuration options, and request metric collector.
|
AWSDirectoryServiceClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Directory Service.
|
Constructor and Description |
---|
AmazonDynamoDBAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
DynamoDB using the specified AWS account credentials, executor service,
and client configuration options.
|
AmazonDynamoDBAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
DynamoDB using the provided 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
DynamoDB using the specified AWS account credentials provider, executor
service, and client configuration options.
|
AmazonDynamoDBAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
DynamoDB.
|
AmazonDynamoDBClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on DynamoDB using the
specified AWS account credentials and client configuration options.
|
AmazonDynamoDBClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on DynamoDB 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 DynamoDB using the
specified AWS account credentials provider, client configuration options,
and request metric collector.
|
AmazonDynamoDBClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on DynamoDB.
|
AmazonDynamoDBStreamsAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
DynamoDB Streams using the specified AWS account credentials, executor
service, and client configuration options.
|
AmazonDynamoDBStreamsAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Amazon
DynamoDB Streams using the provided AWS account credentials provider and
client configuration options.
|
AmazonDynamoDBStreamsAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
DynamoDB Streams using the specified AWS account credentials provider,
executor service, and client configuration options.
|
AmazonDynamoDBStreamsAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Amazon
DynamoDB Streams.
|
AmazonDynamoDBStreamsClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon DynamoDB
Streams using the specified AWS account credentials and client
configuration options.
|
AmazonDynamoDBStreamsClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon DynamoDB
Streams using the specified AWS account credentials provider and client
configuration options.
|
AmazonDynamoDBStreamsClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on Amazon DynamoDB
Streams using the specified AWS account credentials provider, client
configuration options, and request metric collector.
|
AmazonDynamoDBStreamsClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon DynamoDB
Streams.
|
Constructor and Description |
---|
AmazonEC2AsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
AmazonEC2 using the specified AWS account credentials,
executor service, and client configuration options.
|
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(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
AmazonEC2.
|
AmazonEC2Client(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonEC2 using the specified AWS account credentials
and client configuration options.
|
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.
|
AmazonEC2Client(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonEC2.
|
Constructor and Description |
---|
AmazonECSAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
ECS using the specified AWS account credentials, executor service, and
client configuration options.
|
AmazonECSAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Amazon
ECS using the provided AWS account credentials provider and client
configuration options.
|
AmazonECSAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
ECS using the specified AWS account credentials provider, executor
service, and client configuration options.
|
AmazonECSAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Amazon
ECS.
|
AmazonECSClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon ECS using the
specified AWS account credentials and client configuration options.
|
AmazonECSClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon ECS using the
specified AWS account credentials provider and client configuration
options.
|
AmazonECSClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on Amazon ECS using the
specified AWS account credentials provider, client configuration options,
and request metric collector.
|
AmazonECSClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon ECS.
|
Constructor and Description |
---|
AmazonElastiCacheAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
AmazonElastiCache using the specified AWS account credentials,
executor service, and client configuration options.
|
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(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
AmazonElastiCache.
|
AmazonElastiCacheClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonElastiCache using the specified AWS account credentials
and client configuration options.
|
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.
|
AmazonElastiCacheClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonElastiCache.
|
Constructor and Description |
---|
AWSElasticBeanstalkAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Elastic
Beanstalk using the specified AWS account credentials, executor service,
and client configuration options.
|
AWSElasticBeanstalkAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Elastic
Beanstalk using the provided 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 Elastic
Beanstalk using the specified AWS account credentials provider, executor
service, and client configuration options.
|
AWSElasticBeanstalkAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Elastic
Beanstalk.
|
AWSElasticBeanstalkClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Elastic Beanstalk
using the specified AWS account credentials and client configuration
options.
|
AWSElasticBeanstalkClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Elastic Beanstalk
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 Elastic Beanstalk
using the specified AWS account credentials provider, client
configuration options, and request metric collector.
|
AWSElasticBeanstalkClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Elastic Beanstalk.
|
Constructor and Description |
---|
AmazonElasticFileSystemAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on EFS
using the specified AWS account credentials, executor service, and client
configuration options.
|
AmazonElasticFileSystemAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on EFS
using the provided AWS account credentials provider and client
configuration options.
|
AmazonElasticFileSystemAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on EFS
using the specified AWS account credentials provider, executor service,
and client configuration options.
|
AmazonElasticFileSystemAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on EFS.
|
AmazonElasticFileSystemClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on EFS using the
specified AWS account credentials and client configuration options.
|
AmazonElasticFileSystemClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on EFS using the
specified AWS account credentials provider and client configuration
options.
|
AmazonElasticFileSystemClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on EFS using the
specified AWS account credentials provider, client configuration options,
and request metric collector.
|
AmazonElasticFileSystemClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on EFS.
|
Constructor and Description |
---|
AmazonElasticLoadBalancingAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
AmazonElasticLoadBalancing using the specified AWS account credentials,
executor service, and client configuration options.
|
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(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
AmazonElasticLoadBalancing.
|
AmazonElasticLoadBalancingClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonElasticLoadBalancing using the specified AWS account credentials
and client configuration options.
|
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.
|
AmazonElasticLoadBalancingClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonElasticLoadBalancing.
|
Constructor and Description |
---|
AmazonElasticMapReduceAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
EMR using the specified AWS account credentials, executor service, and
client configuration options.
|
AmazonElasticMapReduceAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Amazon
EMR using the provided 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 Amazon
EMR using the specified AWS account credentials provider, executor
service, and client configuration options.
|
AmazonElasticMapReduceAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Amazon
EMR.
|
AmazonElasticMapReduceClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon EMR using the
specified AWS account credentials and client configuration options.
|
AmazonElasticMapReduceClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon EMR 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 Amazon EMR using the
specified AWS account credentials provider, client configuration options,
and request metric collector.
|
AmazonElasticMapReduceClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon EMR.
|
Constructor and Description |
---|
AWSElasticsearchAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
Elasticsearch Service using the specified AWS account credentials,
executor service, and client configuration options.
|
AWSElasticsearchAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Amazon
Elasticsearch Service using the provided AWS account credentials provider
and client configuration options.
|
AWSElasticsearchAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
Elasticsearch Service using the specified AWS account credentials
provider, executor service, and client configuration options.
|
AWSElasticsearchAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Amazon
Elasticsearch Service.
|
AWSElasticsearchClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon Elasticsearch
Service using the specified AWS account credentials and client
configuration options.
|
AWSElasticsearchClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon Elasticsearch
Service using the specified AWS account credentials provider and client
configuration options.
|
AWSElasticsearchClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on Amazon Elasticsearch
Service using the specified AWS account credentials provider, client
configuration options, and request metric collector.
|
AWSElasticsearchClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon Elasticsearch
Service.
|
Constructor and Description |
---|
AmazonElasticTranscoderAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
AmazonElasticTranscoder using the specified AWS account credentials,
executor service, and client configuration options.
|
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(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
AmazonElasticTranscoder.
|
AmazonElasticTranscoderClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonElasticTranscoder using the specified AWS account credentials
and client configuration options.
|
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.
|
AmazonElasticTranscoderClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonElasticTranscoder.
|
Constructor and Description |
---|
AmazonGlacierAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
AmazonGlacier using the specified AWS account credentials,
executor service, and client configuration options.
|
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(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
AmazonGlacier.
|
AmazonGlacierClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonGlacier using the specified AWS account credentials
and client configuration options.
|
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.
|
AmazonGlacierClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonGlacier.
|
Constructor and Description |
---|
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) |
Constructor and Description |
---|
AmazonIdentityManagementAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
AmazonIdentityManagement using the specified AWS account credentials,
executor service, and client configuration options.
|
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(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
AmazonIdentityManagement.
|
AmazonIdentityManagementClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonIdentityManagement using the specified AWS account credentials
and client configuration options.
|
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.
|
AmazonIdentityManagementClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonIdentityManagement.
|
Constructor and Description |
---|
AmazonImportExportAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on AWS
Import/Export using the specified AWS account credentials, executor
service, and client configuration options.
|
AmazonImportExportAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on AWS
Import/Export using the provided 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 AWS
Import/Export using the specified AWS account credentials provider,
executor service, and client configuration options.
|
AmazonImportExportAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on AWS
Import/Export.
|
AmazonImportExportClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS Import/Export
using the specified AWS account credentials and client configuration
options.
|
AmazonImportExportClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS Import/Export
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 AWS Import/Export
using the specified AWS account credentials provider, client
configuration options, and request metric collector.
|
AmazonImportExportClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS Import/Export.
|
Constructor and Description |
---|
AmazonInspectorAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
Inspector using the specified AWS account credentials, executor service,
and client configuration options.
|
AmazonInspectorAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Amazon
Inspector using the provided AWS account credentials provider and client
configuration options.
|
AmazonInspectorAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
Inspector using the specified AWS account credentials provider, executor
service, and client configuration options.
|
AmazonInspectorAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Amazon
Inspector.
|
AmazonInspectorClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon Inspector
using the specified AWS account credentials and client configuration
options.
|
AmazonInspectorClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon Inspector
using the specified AWS account credentials provider and client
configuration options.
|
AmazonInspectorClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on Amazon Inspector
using the specified AWS account credentials provider, client
configuration options, and request metric collector.
|
AmazonInspectorClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon Inspector.
|
Constructor and Description |
---|
AWSIotAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on AWS IoT
using the specified AWS account credentials, executor service, and client
configuration options.
|
AWSIotAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on AWS IoT
using the provided AWS account credentials provider and client
configuration options.
|
AWSIotAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on AWS IoT
using the specified AWS account credentials provider, executor service,
and client configuration options.
|
AWSIotAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on AWS
IoT.
|
AWSIotClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS IoT using the
specified AWS account credentials and client configuration options.
|
AWSIotClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS IoT using the
specified AWS account credentials provider and client configuration
options.
|
AWSIotClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on AWS IoT using the
specified AWS account credentials provider, client configuration options,
and request metric collector.
|
AWSIotClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS IoT.
|
Constructor and Description |
---|
AWSIotDataAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on AWS IoT
Data Plane using the specified AWS account credentials, executor service,
and client configuration options.
|
AWSIotDataAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on AWS IoT
Data Plane using the provided AWS account credentials provider and client
configuration options.
|
AWSIotDataAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on AWS IoT
Data Plane using the specified AWS account credentials provider, executor
service, and client configuration options.
|
AWSIotDataAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on AWS IoT
Data Plane.
|
AWSIotDataClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS IoT Data Plane
using the specified AWS account credentials and client configuration
options.
|
AWSIotDataClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS IoT Data Plane
using the specified AWS account credentials provider and client
configuration options.
|
AWSIotDataClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on AWS IoT Data Plane
using the specified AWS account credentials provider, client
configuration options, and request metric collector.
|
AWSIotDataClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS IoT Data Plane.
|
Constructor and Description |
---|
AmazonKinesisAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Kinesis
using the specified AWS account credentials, executor service, and client
configuration options.
|
AmazonKinesisAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Kinesis
using the provided 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 Kinesis
using the specified AWS account credentials provider, executor service,
and client configuration options.
|
AmazonKinesisAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
Kinesis.
|
AmazonKinesisClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Kinesis using the
specified AWS account credentials and client configuration options.
|
AmazonKinesisClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Kinesis 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 Kinesis using the
specified AWS account credentials provider, client configuration options,
and request metric collector.
|
AmazonKinesisClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Kinesis.
|
Constructor and Description |
---|
AmazonKinesisFirehoseAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
Firehose using the specified AWS account credentials, executor service,
and client configuration options.
|
AmazonKinesisFirehoseAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
Firehose using the provided AWS account credentials provider and client
configuration options.
|
AmazonKinesisFirehoseAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
Firehose using the specified AWS account credentials provider, executor
service, and client configuration options.
|
AmazonKinesisFirehoseAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
Firehose.
|
AmazonKinesisFirehoseClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Firehose using the
specified AWS account credentials and client configuration options.
|
AmazonKinesisFirehoseClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Firehose using the
specified AWS account credentials provider and client configuration
options.
|
AmazonKinesisFirehoseClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on Firehose using the
specified AWS account credentials provider, client configuration options,
and request metric collector.
|
AmazonKinesisFirehoseClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Firehose.
|
Constructor and Description |
---|
AWSKMSAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
AWSKMS using the specified AWS account credentials,
executor service, and client configuration options.
|
AWSKMSAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
AWSKMS using the specified AWS account credentials
provider and client configuration options.
|
AWSKMSAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
AWSKMS using the specified AWS account credentials
provider, executor service, and client configuration options.
|
AWSKMSAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
AWSKMS.
|
AWSKMSClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AWSKMS using the specified AWS account credentials
and client configuration options.
|
AWSKMSClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AWSKMS using the specified AWS account credentials
provider and client configuration options.
|
AWSKMSClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on
AWSKMS using the specified AWS account credentials
provider, client configuration options and request metric collector.
|
AWSKMSClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AWSKMS.
|
Constructor and Description |
---|
AWSLambdaAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
AWSLambda using the specified AWS account credentials,
executor service, and client configuration options.
|
AWSLambdaAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
AWSLambda using the specified AWS account credentials
provider and client configuration options.
|
AWSLambdaAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
AWSLambda using the specified AWS account credentials
provider, executor service, and client configuration options.
|
AWSLambdaAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
AWSLambda.
|
AWSLambdaClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AWSLambda using the specified AWS account credentials
and client configuration options.
|
AWSLambdaClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AWSLambda using the specified AWS account credentials
provider and client configuration options.
|
AWSLambdaClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on
AWSLambda using the specified AWS account credentials
provider, client configuration options and request metric collector.
|
AWSLambdaClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AWSLambda.
|
Constructor and Description |
---|
AWSLogsAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
CloudWatch Logs using the specified AWS account credentials, executor
service, and client configuration options.
|
AWSLogsAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Amazon
CloudWatch Logs using the provided AWS account credentials provider and
client configuration options.
|
AWSLogsAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
CloudWatch Logs using the specified AWS account credentials provider,
executor service, and client configuration options.
|
AWSLogsAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Amazon
CloudWatch Logs.
|
AWSLogsClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon CloudWatch
Logs using the specified AWS account credentials and client configuration
options.
|
AWSLogsClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon CloudWatch
Logs using the specified AWS account credentials provider and client
configuration options.
|
AWSLogsClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on Amazon CloudWatch
Logs using the specified AWS account credentials provider, client
configuration options, and request metric collector.
|
AWSLogsClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon CloudWatch
Logs.
|
Constructor and Description |
---|
AmazonMachineLearningAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
Machine Learning using the specified AWS account credentials, executor
service, and client configuration options.
|
AmazonMachineLearningAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Amazon
Machine Learning using the provided AWS account credentials provider and
client configuration options.
|
AmazonMachineLearningAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
Machine Learning using the specified AWS account credentials provider,
executor service, and client configuration options.
|
AmazonMachineLearningAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Amazon
Machine Learning.
|
AmazonMachineLearningClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon Machine
Learning using the specified AWS account credentials and client
configuration options.
|
AmazonMachineLearningClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon Machine
Learning using the specified AWS account credentials provider and client
configuration options.
|
AmazonMachineLearningClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on Amazon Machine
Learning using the specified AWS account credentials provider, client
configuration options, and request metric collector.
|
AmazonMachineLearningClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon Machine
Learning.
|
Constructor and Description |
---|
AWSMarketplaceCommerceAnalyticsAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on AWS
Marketplace Commerce Analytics using the specified AWS account
credentials, executor service, and client configuration options.
|
AWSMarketplaceCommerceAnalyticsAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on AWS
Marketplace Commerce Analytics using the provided AWS account credentials
provider and client configuration options.
|
AWSMarketplaceCommerceAnalyticsAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on AWS
Marketplace Commerce Analytics using the specified AWS account
credentials provider, executor service, and client configuration options.
|
AWSMarketplaceCommerceAnalyticsAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on AWS
Marketplace Commerce Analytics.
|
AWSMarketplaceCommerceAnalyticsClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS Marketplace
Commerce Analytics using the specified AWS account credentials and client
configuration options.
|
AWSMarketplaceCommerceAnalyticsClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS Marketplace
Commerce Analytics using the specified AWS account credentials provider
and client configuration options.
|
AWSMarketplaceCommerceAnalyticsClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on AWS Marketplace
Commerce Analytics using the specified AWS account credentials provider,
client configuration options, and request metric collector.
|
AWSMarketplaceCommerceAnalyticsClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS Marketplace
Commerce Analytics.
|
Constructor and Description |
---|
AWSOpsWorksAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on AWS
OpsWorks using the specified AWS account credentials, executor service,
and client configuration options.
|
AWSOpsWorksAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on AWS
OpsWorks using the provided 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 AWS
OpsWorks using the specified AWS account credentials provider, executor
service, and client configuration options.
|
AWSOpsWorksAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on AWS
OpsWorks.
|
AWSOpsWorksClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS OpsWorks using
the specified AWS account credentials and client configuration options.
|
AWSOpsWorksClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS OpsWorks 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 AWS OpsWorks using
the specified AWS account credentials provider, client configuration
options, and request metric collector.
|
AWSOpsWorksClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS OpsWorks.
|
Constructor and Description |
---|
AmazonRDSAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
AmazonRDS using the specified AWS account credentials,
executor service, and client configuration options.
|
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(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
AmazonRDS.
|
AmazonRDSClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonRDS using the specified AWS account credentials
and client configuration options.
|
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.
|
AmazonRDSClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonRDS.
|
Constructor and Description |
---|
AmazonRedshiftAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
AmazonRedshift using the specified AWS account credentials,
executor service, and client configuration options.
|
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(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
AmazonRedshift.
|
AmazonRedshiftClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonRedshift using the specified AWS account credentials
and client configuration options.
|
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.
|
AmazonRedshiftClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonRedshift.
|
Constructor and Description |
---|
AmazonRoute53AsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
AmazonRoute53 using the specified AWS account credentials,
executor service, and client configuration options.
|
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(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
AmazonRoute53.
|
AmazonRoute53Client(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonRoute53 using the specified AWS account credentials
and client configuration options.
|
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.
|
AmazonRoute53Client(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonRoute53.
|
Constructor and Description |
---|
AmazonRoute53DomainsAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
Route 53 Domains using the specified AWS account credentials, executor
service, and client configuration options.
|
AmazonRoute53DomainsAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Amazon
Route 53 Domains using the provided AWS account credentials provider and
client configuration options.
|
AmazonRoute53DomainsAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
Route 53 Domains using the specified AWS account credentials provider,
executor service, and client configuration options.
|
AmazonRoute53DomainsAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Amazon
Route 53 Domains.
|
AmazonRoute53DomainsClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon Route 53
Domains using the specified AWS account credentials and client
configuration options.
|
AmazonRoute53DomainsClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon Route 53
Domains using the specified AWS account credentials provider and client
configuration options.
|
AmazonRoute53DomainsClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on Amazon Route 53
Domains using the specified AWS account credentials provider, client
configuration options, and request metric collector.
|
AmazonRoute53DomainsClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon Route 53
Domains.
|
Constructor and Description |
---|
AmazonS3Client(AWSCredentials awsCredentials,
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)
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.
|
AmazonS3Client(ClientConfiguration clientConfiguration)
Constructs a new client using the specified client configuration to
access Amazon S3.
|
AmazonS3EncryptionClient(AWSCredentials credentials,
EncryptionMaterials encryptionMaterials,
ClientConfiguration clientConfig,
CryptoConfiguration cryptoConfig)
Constructs a new Amazon S3 Encryption client using the specified AWS credentials and
client configuration to access Amazon S3.
|
AmazonS3EncryptionClient(AWSCredentials credentials,
EncryptionMaterialsProvider encryptionMaterialsProvider,
ClientConfiguration clientConfig,
CryptoConfiguration cryptoConfig) |
AmazonS3EncryptionClient(AWSCredentialsProvider credentialsProvider,
EncryptionMaterialsProvider kekMaterialsProvider,
ClientConfiguration clientConfig,
CryptoConfiguration cryptoConfig) |
AmazonS3EncryptionClient(AWSCredentialsProvider credentialsProvider,
EncryptionMaterialsProvider kekMaterialsProvider,
ClientConfiguration clientConfig,
CryptoConfiguration cryptoConfig,
RequestMetricCollector requestMetricCollector) |
AmazonS3EncryptionClient(AWSKMSClient kms,
AWSCredentialsProvider credentialsProvider,
EncryptionMaterialsProvider kekMaterialsProvider,
ClientConfiguration clientConfig,
CryptoConfiguration cryptoConfig,
RequestMetricCollector requestMetricCollector) |
Constructor and Description |
---|
AWSSecurityTokenServiceAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
AWSSecurityTokenService using the specified AWS account credentials,
executor service, and client configuration options.
|
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(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
AWSSecurityTokenService.
|
AWSSecurityTokenServiceClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AWSSecurityTokenService using the specified AWS account credentials
and client configuration options.
|
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.
|
AWSSecurityTokenServiceClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AWSSecurityTokenService.
|
Constructor and Description |
---|
AmazonSimpleDBAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
AmazonSimpleDB using the specified AWS account credentials,
executor service, and client configuration options.
|
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(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
AmazonSimpleDB.
|
AmazonSimpleDBClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonSimpleDB using the specified AWS account credentials
and client configuration options.
|
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.
|
AmazonSimpleDBClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonSimpleDB.
|
Constructor and Description |
---|
AmazonSimpleEmailServiceAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
AmazonSimpleEmailService using the specified AWS account credentials,
executor service, and client configuration options.
|
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(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
AmazonSimpleEmailService.
|
AmazonSimpleEmailServiceClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonSimpleEmailService using the specified AWS account credentials
and client configuration options.
|
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.
|
AmazonSimpleEmailServiceClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonSimpleEmailService.
|
Constructor and Description |
---|
AWSSimpleSystemsManagementAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
SSM using the specified AWS account credentials, executor service, and
client configuration options.
|
AWSSimpleSystemsManagementAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Amazon
SSM using the provided AWS account credentials provider and client
configuration options.
|
AWSSimpleSystemsManagementAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
SSM using the specified AWS account credentials provider, executor
service, and client configuration options.
|
AWSSimpleSystemsManagementAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Amazon
SSM.
|
AWSSimpleSystemsManagementClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon SSM using the
specified AWS account credentials and client configuration options.
|
AWSSimpleSystemsManagementClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon SSM using the
specified AWS account credentials provider and client configuration
options.
|
AWSSimpleSystemsManagementClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on Amazon SSM using the
specified AWS account credentials provider, client configuration options,
and request metric collector.
|
AWSSimpleSystemsManagementClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon SSM.
|
Constructor and Description |
---|
AmazonSimpleWorkflowAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
AmazonSimpleWorkflow using the specified AWS account credentials,
executor service, and client configuration options.
|
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(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
AmazonSimpleWorkflow.
|
AmazonSimpleWorkflowClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonSimpleWorkflow using the specified AWS account credentials
and client configuration options.
|
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.
|
AmazonSimpleWorkflowClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonSimpleWorkflow.
|
Constructor and Description |
---|
AmazonSNSAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
AmazonSNS using the specified AWS account credentials,
executor service, and client configuration options.
|
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(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
AmazonSNS.
|
AmazonSNSClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonSNS using the specified AWS account credentials
and client configuration options.
|
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.
|
AmazonSNSClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonSNS.
|
Constructor and Description |
---|
AmazonSQSAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
AmazonSQS using the specified AWS account credentials,
executor service, and client configuration options.
|
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(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
AmazonSQS.
|
AmazonSQSClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonSQS using the specified AWS account credentials
and client configuration options.
|
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.
|
AmazonSQSClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AmazonSQS.
|
Constructor and Description |
---|
AWSStorageGatewayAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on AWS
Storage Gateway using the specified AWS account credentials, executor
service, and client configuration options.
|
AWSStorageGatewayAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on AWS
Storage Gateway using the provided 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 AWS
Storage Gateway using the specified AWS account credentials provider,
executor service, and client configuration options.
|
AWSStorageGatewayAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on AWS
Storage Gateway.
|
AWSStorageGatewayClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS Storage Gateway
using the specified AWS account credentials and client configuration
options.
|
AWSStorageGatewayClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS Storage Gateway
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 AWS Storage Gateway
using the specified AWS account credentials provider, client
configuration options, and request metric collector.
|
AWSStorageGatewayClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS Storage Gateway.
|
Constructor and Description |
---|
AWSSupportAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on AWS
Support using the specified AWS account credentials, executor service,
and client configuration options.
|
AWSSupportAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on AWS
Support using the provided 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 AWS
Support using the specified AWS account credentials provider, executor
service, and client configuration options.
|
AWSSupportAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on AWS
Support.
|
AWSSupportClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS Support using
the specified AWS account credentials and client configuration options.
|
AWSSupportClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS Support 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 AWS Support using
the specified AWS account credentials provider, client configuration
options, and request metric collector.
|
AWSSupportClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS Support.
|
Constructor and Description |
---|
AWSWAFAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on WAF
using the specified AWS account credentials, executor service, and client
configuration options.
|
AWSWAFAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on WAF
using the provided AWS account credentials provider and client
configuration options.
|
AWSWAFAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on WAF
using the specified AWS account credentials provider, executor service,
and client configuration options.
|
AWSWAFAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on WAF.
|
AWSWAFClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on WAF using the
specified AWS account credentials and client configuration options.
|
AWSWAFClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on WAF using the
specified AWS account credentials provider and client configuration
options.
|
AWSWAFClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on WAF using the
specified AWS account credentials provider, client configuration options,
and request metric collector.
|
AWSWAFClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on WAF.
|
Constructor and Description |
---|
AmazonWorkspacesAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
WorkSpaces using the specified AWS account credentials, executor service,
and client configuration options.
|
AmazonWorkspacesAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Amazon
WorkSpaces using the provided AWS account credentials provider and client
configuration options.
|
AmazonWorkspacesAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
WorkSpaces using the specified AWS account credentials provider, executor
service, and client configuration options.
|
AmazonWorkspacesAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Amazon
WorkSpaces.
|
AmazonWorkspacesClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon WorkSpaces
using the specified AWS account credentials and client configuration
options.
|
AmazonWorkspacesClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon WorkSpaces
using the specified AWS account credentials provider and client
configuration options.
|
AmazonWorkspacesClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on Amazon WorkSpaces
using the specified AWS account credentials provider, client
configuration options, and request metric collector.
|
AmazonWorkspacesClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon WorkSpaces.
|
Modifier and Type | Method and Description |
---|---|
static InputStream |
HttpUtils.fetchFile(URI uri,
ClientConfiguration config)
Fetches a file from the URI given and returns an input stream to it.
|
static URI |
HttpUtils.toUri(String endpoint,
ClientConfiguration config)
Returns an URI for the given endpoint.
|
Copyright © 2015. All rights reserved.