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 |
ClientConfiguration |
ClientConfigurationFactory.getConfig()
Builds a
ClientConfiguration instance with the default configuration
for the current client. |
protected ClientConfiguration |
ClientConfigurationFactory.getDefaultConfig()
Builds a
ClientConfiguration instance with default configuration
values suitable for most use cases. |
protected ClientConfiguration |
ClientConfigurationFactory.getInRegionOptimizedConfig()
Builds a
ClientConfiguration instance with configuration values
tailored towards clients operating in the same AWS region as the service
endpoint they call. |
static ClientConfiguration |
PredefinedClientConfigurations.swfDefault()
Factory method for Simple Workflow's default
ClientConfiguration |
ClientConfiguration |
ClientConfiguration.withClientExecutionTimeout(int clientExecutionTimeout)
Sets the amount of time (in milliseconds) to allow the client to complete the execution of
an API call.
|
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.withThrottledRetries(boolean use)
Sets whether throttled retries should be used
|
ClientConfiguration |
ClientConfiguration.withUseExpectContinue(boolean useExpectContinue)
Sets if use expect continue should be enabled.
|
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.
|
AmazonWebServiceClient(ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector,
boolean disableStrictHostNameVerification) |
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
httpClientSettings, etc).
|
AmazonHttpClient(ClientConfiguration clientConfig,
ConnectionManagerAwareHttpClient httpClient,
RequestMetricCollector requestMetricCollector)
Package-protected constructor for unit test purposes.
|
AmazonHttpClient(ClientConfiguration config,
RequestMetricCollector requestMetricCollector)
Constructs a new AWS client using the specified client configuration options (ex: max retry attempts, proxy
httpClientSettings, etc), and request metric collector.
|
AmazonHttpClient(ClientConfiguration config,
RequestMetricCollector requestMetricCollector,
boolean useBrowserCompatibleHostNameVerifier)
Constructs a new AWS client using the specified client configuration options (ex: max retry attempts, proxy
httpClientSettings, etc), and request metric collector.
|
Modifier and Type | Method and Description |
---|---|
static HttpClientSettings |
HttpClientSettings.adapt(ClientConfiguration config) |
static HttpClientSettings |
HttpClientSettings.adapt(ClientConfiguration config,
boolean useBrowserCompatibleHostNameVerifier) |
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)
Deprecated.
|
static RegionMetadata |
LegacyRegionXmlLoadUtils.load(URI uri,
ClientConfiguration config)
Deprecated.
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)
Deprecated.
|
Constructor and Description |
---|
AmazonApiGatewayAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
API Gateway using the specified AWS account credentials, executor
service, and client configuration options.
|
AmazonApiGatewayAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Amazon
API Gateway using the provided AWS account credentials provider and
client configuration options.
|
AmazonApiGatewayAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
API Gateway using the specified AWS account credentials provider,
executor service, and client configuration options.
|
AmazonApiGatewayAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Amazon
API Gateway.
|
AmazonApiGatewayClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon API Gateway
using the specified AWS account credentials and client configuration
options.
|
AmazonApiGatewayClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon API Gateway
using the specified AWS account credentials provider and client
configuration options.
|
AmazonApiGatewayClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on Amazon API Gateway
using the specified AWS account credentials provider, client
configuration options, and request metric collector.
|
AmazonApiGatewayClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon API Gateway.
|
Constructor and Description |
---|
AWSApplicationAutoScalingAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
Application Auto Scaling using the specified AWS account credentials,
executor service, and client configuration options.
|
AWSApplicationAutoScalingAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
Application Auto Scaling using the provided AWS account credentials
provider and client configuration options.
|
AWSApplicationAutoScalingAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
Application Auto Scaling using the specified AWS account credentials
provider, executor service, and client configuration options.
|
AWSApplicationAutoScalingAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
Application Auto Scaling.
|
AWSApplicationAutoScalingClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Application Auto
Scaling using the specified AWS account credentials and client
configuration options.
|
AWSApplicationAutoScalingClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Application Auto
Scaling using the specified AWS account credentials provider and client
configuration options.
|
AWSApplicationAutoScalingClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on Application Auto
Scaling using the specified AWS account credentials provider, client
configuration options, and request metric collector.
|
AWSApplicationAutoScalingClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Application Auto
Scaling.
|
Constructor and Description |
---|
AWSApplicationDiscoveryAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on AWS
Application Discovery Service using the specified AWS account
credentials, executor service, and client configuration options.
|
AWSApplicationDiscoveryAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on AWS
Application Discovery Service using the provided AWS account credentials
provider and client configuration options.
|
AWSApplicationDiscoveryAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on AWS
Application Discovery Service using the specified AWS account credentials
provider, executor service, and client configuration options.
|
AWSApplicationDiscoveryAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on AWS
Application Discovery Service.
|
AWSApplicationDiscoveryClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS Application
Discovery Service using the specified AWS account credentials and client
configuration options.
|
AWSApplicationDiscoveryClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS Application
Discovery Service using the specified AWS account credentials provider
and client configuration options.
|
AWSApplicationDiscoveryClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on AWS Application
Discovery Service using the specified AWS account credentials provider,
client configuration options, and request metric collector.
|
AWSApplicationDiscoveryClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS Application
Discovery Service.
|
Constructor and Description |
---|
AmazonAutoScalingAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Auto
Scaling 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 Auto
Scaling using the provided 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 Auto
Scaling 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 Auto
Scaling.
|
AmazonAutoScalingClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Auto Scaling using
the specified AWS account credentials and client configuration options.
|
AmazonAutoScalingClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Auto Scaling 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 Auto Scaling 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 Auto Scaling.
|
Constructor and Description |
---|
AWSCertificateManagerAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on ACM
using the specified AWS account credentials, executor service, and client
configuration options.
|
AWSCertificateManagerAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on ACM
using the provided AWS account credentials provider and client
configuration options.
|
AWSCertificateManagerAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on ACM
using the specified AWS account credentials provider, executor service,
and client configuration options.
|
AWSCertificateManagerAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on ACM.
|
AWSCertificateManagerClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on ACM using the
specified AWS account credentials and client configuration options.
|
AWSCertificateManagerClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on ACM using the
specified AWS account credentials provider and client configuration
options.
|
AWSCertificateManagerClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on ACM using the
specified AWS account credentials provider, client configuration options,
and request metric collector.
|
AWSCertificateManagerClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on ACM.
|
Constructor and Description |
---|
AmazonCloudFormationAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on AWS
CloudFormation 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 AWS
CloudFormation using the provided 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 AWS
CloudFormation 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 AWS
CloudFormation.
|
AmazonCloudFormationClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS CloudFormation
using the specified AWS account credentials and client configuration
options.
|
AmazonCloudFormationClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS CloudFormation
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 AWS CloudFormation
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 AWS CloudFormation.
|
Constructor and Description |
---|
AmazonCloudFrontAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
CloudFront 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
CloudFront using the provided 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
CloudFront 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
CloudFront.
|
AmazonCloudFrontClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on CloudFront using the
specified AWS account credentials and client configuration options.
|
AmazonCloudFrontClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on CloudFront 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 CloudFront 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 CloudFront.
|
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 |
---|
AmazonCloudSearchDomainAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
CloudSearch Domain 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 Amazon
CloudSearch Domain using the provided 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 Amazon
CloudSearch Domain 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 Amazon
CloudSearch Domain.
|
AmazonCloudSearchDomainClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon CloudSearch
Domain using the specified AWS account credentials and client
configuration options.
|
AmazonCloudSearchDomainClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon CloudSearch
Domain 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 Amazon CloudSearch
Domain 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 Amazon CloudSearch
Domain.
|
Constructor and Description |
---|
AmazonCloudSearchAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
CloudSearch 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 Amazon
CloudSearch using the provided 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 Amazon
CloudSearch 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 Amazon
CloudSearch.
|
AmazonCloudSearchClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon CloudSearch
using the specified AWS account credentials and client configuration
options.
|
AmazonCloudSearchClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon CloudSearch
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 Amazon CloudSearch
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 Amazon CloudSearch.
|
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
CloudWatch 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
CloudWatch using the provided 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
CloudWatch 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
CloudWatch.
|
AmazonCloudWatchClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on CloudWatch using the
specified AWS account credentials and client configuration options.
|
AmazonCloudWatchClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on CloudWatch 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 CloudWatch 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 CloudWatch.
|
Constructor and Description |
---|
AmazonCloudWatchEventsAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
CloudWatch Events using the specified AWS account credentials, executor
service, and client configuration options.
|
AmazonCloudWatchEventsAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Amazon
CloudWatch Events using the provided AWS account credentials provider and
client configuration options.
|
AmazonCloudWatchEventsAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
CloudWatch Events using the specified AWS account credentials provider,
executor service, and client configuration options.
|
AmazonCloudWatchEventsAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Amazon
CloudWatch Events.
|
AmazonCloudWatchEventsClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon CloudWatch
Events using the specified AWS account credentials and client
configuration options.
|
AmazonCloudWatchEventsClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon CloudWatch
Events using the specified AWS account credentials provider and client
configuration options.
|
AmazonCloudWatchEventsClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on Amazon CloudWatch
Events using the specified AWS account credentials provider, client
configuration options, and request metric collector.
|
AmazonCloudWatchEventsClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon CloudWatch
Events.
|
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 |
---|
AWSCognitoIdentityProviderAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
Cognito Identity Provider using the specified AWS account credentials,
executor service, and client configuration options.
|
AWSCognitoIdentityProviderAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Amazon
Cognito Identity Provider using the provided AWS account credentials
provider and client configuration options.
|
AWSCognitoIdentityProviderAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
Cognito Identity Provider using the specified AWS account credentials
provider, executor service, and client configuration options.
|
AWSCognitoIdentityProviderAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Amazon
Cognito Identity Provider.
|
AWSCognitoIdentityProviderClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon Cognito
Identity Provider using the specified AWS account credentials and client
configuration options.
|
AWSCognitoIdentityProviderClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon Cognito
Identity Provider using the specified AWS account credentials provider
and client configuration options.
|
AWSCognitoIdentityProviderClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on Amazon Cognito
Identity Provider using the specified AWS account credentials provider,
client configuration options, and request metric collector.
|
AWSCognitoIdentityProviderClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon Cognito
Identity Provider.
|
Constructor and Description |
---|
AmazonCognitoSyncAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
Cognito Sync 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 Amazon
Cognito Sync using the provided 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 Amazon
Cognito Sync 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 Amazon
Cognito Sync.
|
AmazonCognitoSyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon Cognito Sync
using the specified AWS account credentials and client configuration
options.
|
AmazonCognitoSyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon Cognito Sync
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 Amazon Cognito Sync
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 Amazon Cognito Sync.
|
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 |
---|
AWSDatabaseMigrationServiceAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on AWS
Database Migration Service using the specified AWS account credentials,
executor service, and client configuration options.
|
AWSDatabaseMigrationServiceAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on AWS
Database Migration Service using the provided AWS account credentials
provider and client configuration options.
|
AWSDatabaseMigrationServiceAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on AWS
Database Migration Service using the specified AWS account credentials
provider, executor service, and client configuration options.
|
AWSDatabaseMigrationServiceAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on AWS
Database Migration Service.
|
AWSDatabaseMigrationServiceClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS Database
Migration Service using the specified AWS account credentials and client
configuration options.
|
AWSDatabaseMigrationServiceClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS Database
Migration Service using the specified AWS account credentials provider
and client configuration options.
|
AWSDatabaseMigrationServiceClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on AWS Database
Migration Service using the specified AWS account credentials provider,
client configuration options, and request metric collector.
|
AWSDatabaseMigrationServiceClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS Database
Migration 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 Amazon
EC2 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 Amazon
EC2 using the provided 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 Amazon
EC2 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 Amazon
EC2.
|
AmazonEC2Client(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon EC2 using the
specified AWS account credentials and client configuration options.
|
AmazonEC2Client(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon EC2 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 Amazon EC2 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 Amazon EC2.
|
Constructor and Description |
---|
AmazonECRAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
ECR using the specified AWS account credentials, executor service, and
client configuration options.
|
AmazonECRAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Amazon
ECR using the provided AWS account credentials provider and client
configuration options.
|
AmazonECRAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
ECR using the specified AWS account credentials provider, executor
service, and client configuration options.
|
AmazonECRAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Amazon
ECR.
|
AmazonECRClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon ECR using the
specified AWS account credentials and client configuration options.
|
AmazonECRClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon ECR using the
specified AWS account credentials provider and client configuration
options.
|
AmazonECRClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on Amazon ECR using the
specified AWS account credentials provider, client configuration options,
and request metric collector.
|
AmazonECRClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon ECR.
|
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 Amazon
ElastiCache 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 Amazon
ElastiCache using the provided 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 Amazon
ElastiCache 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 Amazon
ElastiCache.
|
AmazonElastiCacheClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon ElastiCache
using the specified AWS account credentials and client configuration
options.
|
AmazonElastiCacheClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon ElastiCache
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 Amazon ElastiCache
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 Amazon ElastiCache.
|
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 Elastic
Load Balancing 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 Elastic
Load Balancing using the provided 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 Elastic
Load Balancing 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 Elastic
Load Balancing.
|
AmazonElasticLoadBalancingClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Elastic Load
Balancing using the specified AWS account credentials and client
configuration options.
|
AmazonElasticLoadBalancingClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Elastic Load
Balancing 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 Elastic Load
Balancing 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 Elastic Load
Balancing.
|
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 Amazon
Elastic Transcoder 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 Amazon
Elastic Transcoder using the provided 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 Amazon
Elastic Transcoder 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 Amazon
Elastic Transcoder.
|
AmazonElasticTranscoderClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon Elastic
Transcoder using the specified AWS account credentials and client
configuration options.
|
AmazonElasticTranscoderClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon Elastic
Transcoder 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 Amazon Elastic
Transcoder 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 Amazon Elastic
Transcoder.
|
Constructor and Description |
---|
AmazonGameLiftAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
GameLift using the specified AWS account credentials, executor service,
and client configuration options.
|
AmazonGameLiftAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Amazon
GameLift using the provided AWS account credentials provider and client
configuration options.
|
AmazonGameLiftAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
GameLift using the specified AWS account credentials provider, executor
service, and client configuration options.
|
AmazonGameLiftAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on Amazon
GameLift.
|
AmazonGameLiftClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon GameLift
using the specified AWS account credentials and client configuration
options.
|
AmazonGameLiftClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon GameLift
using the specified AWS account credentials provider and client
configuration options.
|
AmazonGameLiftClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on Amazon GameLift
using the specified AWS account credentials provider, client
configuration options, and request metric collector.
|
AmazonGameLiftClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon GameLift.
|
Constructor and Description |
---|
AmazonGlacierAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
Glacier 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 Amazon
Glacier using the provided 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 Amazon
Glacier 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 Amazon
Glacier.
|
AmazonGlacierClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon Glacier using
the specified AWS account credentials and client configuration options.
|
AmazonGlacierClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon Glacier 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 Amazon Glacier 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 Amazon Glacier.
|
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 IAM
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 IAM
using the provided 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 IAM
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 IAM.
|
AmazonIdentityManagementClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on IAM using the
specified AWS account credentials and client configuration options.
|
AmazonIdentityManagementClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on IAM 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 IAM 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 IAM.
|
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 KMS
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 KMS
using the provided 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 KMS
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 KMS.
|
AWSKMSClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on KMS using the
specified AWS account credentials and client configuration options.
|
AWSKMSClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on KMS 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 KMS 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 KMS.
|
Constructor and Description |
---|
AWSLambdaAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on AWS
Lambda 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 AWS
Lambda using the provided 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 AWS
Lambda 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 AWS
Lambda.
|
AWSLambdaClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS Lambda using the
specified AWS account credentials and client configuration options.
|
AWSLambdaClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS Lambda 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 AWS Lambda 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 AWS Lambda.
|
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 |
---|
AWSMarketplaceMeteringAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
AWSMarketplace Metering using the specified AWS account credentials,
executor service, and client configuration options.
|
AWSMarketplaceMeteringAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
AWSMarketplace Metering using the provided AWS account credentials
provider and client configuration options.
|
AWSMarketplaceMeteringAsyncClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on
AWSMarketplace Metering using the specified AWS account credentials
provider, executor service, and client configuration options.
|
AWSMarketplaceMeteringAsyncClient(ClientConfiguration clientConfiguration)
Constructs a new asynchronous client to invoke service methods on
AWSMarketplace Metering.
|
AWSMarketplaceMeteringClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWSMarketplace
Metering using the specified AWS account credentials and client
configuration options.
|
AWSMarketplaceMeteringClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWSMarketplace
Metering using the specified AWS account credentials provider and client
configuration options.
|
AWSMarketplaceMeteringClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on AWSMarketplace
Metering using the specified AWS account credentials provider, client
configuration options, and request metric collector.
|
AWSMarketplaceMeteringClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWSMarketplace
Metering.
|
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 Amazon
RDS 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 Amazon
RDS using the provided 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 Amazon
RDS 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 Amazon
RDS.
|
AmazonRDSClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon RDS using the
specified AWS account credentials and client configuration options.
|
AmazonRDSClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon RDS 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 Amazon RDS 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 Amazon RDS.
|
Constructor and Description |
---|
AmazonRedshiftAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
Redshift 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 Amazon
Redshift using the provided 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 Amazon
Redshift 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 Amazon
Redshift.
|
AmazonRedshiftClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon Redshift
using the specified AWS account credentials and client configuration
options.
|
AmazonRedshiftClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon Redshift
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 Amazon Redshift
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 Amazon Redshift.
|
Constructor and Description |
---|
AmazonRoute53AsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Route
53 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 Route
53 using the provided 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 Route
53 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 Route
53.
|
AmazonRoute53Client(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Route 53 using the
specified AWS account credentials and client configuration options.
|
AmazonRoute53Client(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Route 53 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 Route 53 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 Route 53.
|
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 AWS STS
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 AWS STS
using the provided 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 AWS STS
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 AWS
STS.
|
AWSSecurityTokenServiceClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS STS using the
specified AWS account credentials and client configuration options.
|
AWSSecurityTokenServiceClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on AWS STS 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 AWS STS 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 AWS STS.
|
Constructor and Description |
---|
AmazonSimpleDBAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
SimpleDB 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 Amazon
SimpleDB using the provided 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 Amazon
SimpleDB 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 Amazon
SimpleDB.
|
AmazonSimpleDBClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon SimpleDB
using the specified AWS account credentials and client configuration
options.
|
AmazonSimpleDBClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon SimpleDB
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 Amazon SimpleDB
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 Amazon SimpleDB.
|
Constructor and Description |
---|
AmazonSimpleEmailServiceAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
SES 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 Amazon
SES using the provided 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 Amazon
SES 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 Amazon
SES.
|
AmazonSimpleEmailServiceClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon SES using the
specified AWS account credentials and client configuration options.
|
AmazonSimpleEmailServiceClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon SES 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 Amazon SES 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 Amazon SES.
|
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.
|
Modifier and Type | Method and Description |
---|---|
protected ClientConfiguration |
AmazonSimpleWorkflowClientConfigurationFactory.getDefaultConfig() |
Constructor and Description |
---|
AmazonSimpleWorkflowAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
SWF 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 Amazon
SWF using the provided 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 Amazon
SWF 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 Amazon
SWF.
|
AmazonSimpleWorkflowClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon SWF using the
specified AWS account credentials and client configuration options.
|
AmazonSimpleWorkflowClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon SWF 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 Amazon SWF 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 Amazon SWF.
|
Constructor and Description |
---|
AmazonSNSAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
SNS 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 Amazon
SNS using the provided 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 Amazon
SNS 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 Amazon
SNS.
|
AmazonSNSClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon SNS using the
specified AWS account credentials and client configuration options.
|
AmazonSNSClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon SNS 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 Amazon SNS 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 Amazon SNS.
|
Constructor and Description |
---|
AmazonSQSAsyncClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration,
ExecutorService executorService)
Constructs a new asynchronous client to invoke service methods on Amazon
SQS 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 Amazon
SQS using the provided 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 Amazon
SQS 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 Amazon
SQS.
|
AmazonSQSClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon SQS using the
specified AWS account credentials and client configuration options.
|
AmazonSQSClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on Amazon SQS 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 Amazon SQS 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 Amazon SQS.
|
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 |
RuntimeHttpUtils.fetchFile(URI uri,
ClientConfiguration config)
Fetches a file from the URI given and returns an input stream to it.
|
static URI |
RuntimeHttpUtils.toUri(String endpoint,
ClientConfiguration config)
Returns an URI for the given endpoint.
|
Copyright © 2018. All rights reserved.