Uses of Class
com.amazonaws.ClientConfiguration
Packages that use ClientConfiguration
Package
Description
Synchronous client for accessing Amazon S3.
-
Uses of ClientConfiguration in com.amazonaws
Fields in com.amazonaws declared as ClientConfigurationModifier and TypeFieldDescriptionprotected ClientConfiguration
AmazonWebServiceClient.clientConfiguration
The client configurationMethods in com.amazonaws that return ClientConfigurationModifier and TypeMethodDescriptionstatic ClientConfiguration
PredefinedClientConfigurations.defaultConfig()
Factory method for defaultClientConfiguration
for all services unless otherwise specifiedstatic ClientConfiguration
PredefinedClientConfigurations.dynamoDefault()
Factory method for DynamoDB's defaultClientConfiguration
final ClientConfiguration
ClientConfigurationFactory.getConfig()
Builds aClientConfiguration
instance with the default configuration for the current client.protected ClientConfiguration
ClientConfigurationFactory.getDefaultConfig()
Builds aClientConfiguration
instance with default configuration values suitable for most use cases.protected ClientConfiguration
ClientConfigurationFactory.getInRegionOptimizedConfig()
Builds aClientConfiguration
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 defaultClientConfiguration
ClientConfiguration.withClientExecutionTimeout
(int clientExecutionTimeout) Sets the amount of time (in milliseconds) to allow the client to complete the execution of an API call.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.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.withConnectionTTL
(long connectionTTL) Sets the expiration time (in milliseconds) for a connection in the connection pool.ClientConfiguration.withDnsResolver
(DnsResolver resolver) Sets the DNS Resolver that should be used to for resolving AWS IP addresses.ClientConfiguration.withGzip
(boolean use) Sets whether gzip compression should be usedClientConfiguration.withLocalAddress
(InetAddress localAddress) Sets the optional local address the client will bind to and returns the updated ClientConfiguration object.ClientConfiguration.withMaxConnections
(int maxConnections) Sets the maximum number of allowed open HTTP connections and returns the updated ClientConfiguration object.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.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.withProtocol
(Protocol protocol) Sets the protocol (i.e.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.withProxyHost
(String proxyHost) Sets the optional proxy host the client will connect through and returns the updated ClientConfiguration object.ClientConfiguration.withProxyPassword
(String proxyPassword) Sets the optional proxy password to use when connecting through a proxy, and returns the updated ClientConfiguration object.ClientConfiguration.withProxyPort
(int proxyPort) Sets the optional proxy port the client will connect through and returns the updated ClientConfiguration object.ClientConfiguration.withProxyUsername
(String proxyUsername) Sets the optional proxy user name and returns the updated ClientConfiguration object.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.withReaper
(boolean use) Sets whether theIdleConnectionReaper
is to be started as a daemon threadClientConfiguration.withRequestTimeout
(int requestTimeout) Sets the amount of time to wait (in milliseconds) for the request to complete before giving up and timing out.ClientConfiguration.withResponseMetadataCacheSize
(int responseMetadataCacheSize) Sets the response metadata cache size.ClientConfiguration.withRetryPolicy
(RetryPolicy retryPolicy) Sets the retry policy upon failed requests, and returns the updated ClientConfiguration object.ClientConfiguration.withSecureRandom
(SecureRandom secureRandom) Fluent API forsetSecureRandom(SecureRandom)
.ClientConfiguration.withSignerOverride
(String value) Sets the name of the signature algorithm to use for signing requests made by this client.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.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.withTcpKeepAlive
(boolean use) Sets whether or not to enable TCP KeepAlive support at the socket level.ClientConfiguration.withThrottledRetries
(boolean use) Sets whether throttled retries should be usedClientConfiguration.withUseExpectContinue
(boolean useExpectContinue) Sets if use expect continue should be enabled.ClientConfiguration.withUserAgent
(String userAgent) Sets the HTTP user agent header used in requests and returns the updated ClientConfiguration object.Constructors in com.amazonaws with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonWebServiceClient
(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.protected
AmazonWebServiceClient
(ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector, boolean disableStrictHostNameVerification) -
Uses of ClientConfiguration in com.amazonaws.auth
Methods in com.amazonaws.auth with parameters of type ClientConfigurationModifier and TypeMethodDescriptionSessionCredentialsProviderFactory.getSessionCredentialsProvider
(AWSCredentials longTermCredentials, String serviceEndpoint, ClientConfiguration stsClientConfiguration) Gets a session credentials provider for the long-term credentials and service endpoint given.STSAssumeRoleSessionCredentialsProvider.Builder.withClientConfiguration
(ClientConfiguration clientConfiguration) Set the client configuration used to create the AWSSecurityTokenServiceConstructors in com.amazonaws.auth with parameters of type ClientConfigurationModifierConstructorDescriptionSTSAssumeRoleSessionCredentialsProvider
(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 providedSTSAssumeRoleSessionCredentialsProvider.roleArn
to assume a role and then request short lived session credentials, which will then be returned by this class'sSTSAssumeRoleSessionCredentialsProvider.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 providedSTSAssumeRoleSessionCredentialsProvider.roleArn
to assume a role and then request short lived session credentials, which will then be returned by this class'sSTSAssumeRoleSessionCredentialsProvider.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'sSTSSessionCredentialsProvider.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'sSTSSessionCredentialsProvider.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'sWebIdentityFederationSessionCredentialsProvider.getCredentials()
method. -
Uses of ClientConfiguration in com.amazonaws.http
Constructors in com.amazonaws.http with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonHttpClient
(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. -
Uses of ClientConfiguration in com.amazonaws.http.settings
Methods in com.amazonaws.http.settings with parameters of type ClientConfigurationModifier and TypeMethodDescriptionstatic HttpClientSettings
HttpClientSettings.adapt
(ClientConfiguration config) static HttpClientSettings
HttpClientSettings.adapt
(ClientConfiguration config, boolean useBrowserCompatibleHostNameVerifier) -
Uses of ClientConfiguration in com.amazonaws.regions
Methods in com.amazonaws.regions with parameters of type ClientConfigurationModifier and TypeMethodDescription<T extends AmazonWebServiceClient>
TRegion.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. -
Uses of ClientConfiguration in com.amazonaws.services.apigateway
Constructors in com.amazonaws.services.apigateway with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonApiGatewayAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Amazon API Gateway.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Amazon API Gateway. -
Uses of ClientConfiguration in com.amazonaws.services.applicationautoscaling
Constructors in com.amazonaws.services.applicationautoscaling with parameters of type ClientConfigurationModifierConstructorDescriptionAWSApplicationAutoScalingAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Application Auto Scaling.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Application Auto Scaling. -
Uses of ClientConfiguration in com.amazonaws.services.applicationdiscovery
Constructors in com.amazonaws.services.applicationdiscovery with parameters of type ClientConfigurationModifierConstructorDescriptionAWSApplicationDiscoveryAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on AWS Application Discovery Service.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on AWS Application Discovery Service. -
Uses of ClientConfiguration in com.amazonaws.services.autoscaling
Constructors in com.amazonaws.services.autoscaling with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonAutoScalingAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Auto Scaling.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Auto Scaling. -
Uses of ClientConfiguration in com.amazonaws.services.certificatemanager
Constructors in com.amazonaws.services.certificatemanager with parameters of type ClientConfigurationModifierConstructorDescriptionAWSCertificateManagerAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on ACM.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on ACM. -
Uses of ClientConfiguration in com.amazonaws.services.cloudformation
Constructors in com.amazonaws.services.cloudformation with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonCloudFormationAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on AWS CloudFormation.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on AWS CloudFormation. -
Uses of ClientConfiguration in com.amazonaws.services.cloudfront
Constructors in com.amazonaws.services.cloudfront with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonCloudFrontAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on CloudFront.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on CloudFront. -
Uses of ClientConfiguration in com.amazonaws.services.cloudhsm
Constructors in com.amazonaws.services.cloudhsm with parameters of type ClientConfigurationModifierConstructorDescriptionAWSCloudHSMAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on CloudHSM.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on CloudHSM. -
Uses of ClientConfiguration in com.amazonaws.services.cloudsearchdomain
Constructors in com.amazonaws.services.cloudsearchdomain with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonCloudSearchDomainAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Amazon CloudSearch Domain.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Amazon CloudSearch Domain. -
Uses of ClientConfiguration in com.amazonaws.services.cloudsearchv2
Constructors in com.amazonaws.services.cloudsearchv2 with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonCloudSearchAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Amazon CloudSearch.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Amazon CloudSearch. -
Uses of ClientConfiguration in com.amazonaws.services.cloudtrail
Constructors in com.amazonaws.services.cloudtrail with parameters of type ClientConfigurationModifierConstructorDescriptionAWSCloudTrailAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on CloudTrail.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on CloudTrail. -
Uses of ClientConfiguration in com.amazonaws.services.cloudwatch
Constructors in com.amazonaws.services.cloudwatch with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonCloudWatchAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on CloudWatch.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on CloudWatch. -
Uses of ClientConfiguration in com.amazonaws.services.cloudwatchevents
Constructors in com.amazonaws.services.cloudwatchevents with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonCloudWatchEventsAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Amazon CloudWatch Events.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Amazon CloudWatch Events. -
Uses of ClientConfiguration in com.amazonaws.services.codecommit
Constructors in com.amazonaws.services.codecommit with parameters of type ClientConfigurationModifierConstructorDescriptionAWSCodeCommitAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on CodeCommit.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on CodeCommit. -
Uses of ClientConfiguration in com.amazonaws.services.codedeploy
Constructors in com.amazonaws.services.codedeploy with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonCodeDeployAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on CodeDeploy.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on CodeDeploy. -
Uses of ClientConfiguration in com.amazonaws.services.codepipeline
Constructors in com.amazonaws.services.codepipeline with parameters of type ClientConfigurationModifierConstructorDescriptionAWSCodePipelineAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on CodePipeline.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on CodePipeline. -
Uses of ClientConfiguration in com.amazonaws.services.cognitoidentity
Constructors in com.amazonaws.services.cognitoidentity with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonCognitoIdentityAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Amazon Cognito Identity.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Amazon Cognito Identity. -
Uses of ClientConfiguration in com.amazonaws.services.cognitoidp
Constructors in com.amazonaws.services.cognitoidp with parameters of type ClientConfigurationModifierConstructorDescriptionAWSCognitoIdentityProviderAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Amazon Cognito Identity Provider.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Amazon Cognito Identity Provider. -
Uses of ClientConfiguration in com.amazonaws.services.cognitosync
Constructors in com.amazonaws.services.cognitosync with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonCognitoSyncAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Amazon Cognito Sync.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Amazon Cognito Sync. -
Uses of ClientConfiguration in com.amazonaws.services.config
Constructors in com.amazonaws.services.config with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonConfigAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Config Service.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Config Service. -
Uses of ClientConfiguration in com.amazonaws.services.databasemigrationservice
Constructors in com.amazonaws.services.databasemigrationservice with parameters of type ClientConfigurationModifierConstructorDescriptionAWSDatabaseMigrationServiceAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on AWS Database Migration Service.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on AWS Database Migration Service. -
Uses of ClientConfiguration in com.amazonaws.services.datapipeline
Constructors in com.amazonaws.services.datapipeline with parameters of type ClientConfigurationModifierConstructorDescriptionDataPipelineAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on AWS Data Pipeline.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on AWS Data Pipeline. -
Uses of ClientConfiguration in com.amazonaws.services.devicefarm
Constructors in com.amazonaws.services.devicefarm with parameters of type ClientConfigurationModifierConstructorDescriptionAWSDeviceFarmAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on AWS Device Farm.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on AWS Device Farm. -
Uses of ClientConfiguration in com.amazonaws.services.directconnect
Constructors in com.amazonaws.services.directconnect with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonDirectConnectAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on AWS Direct Connect.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on AWS Direct Connect. -
Uses of ClientConfiguration in com.amazonaws.services.directory
Constructors in com.amazonaws.services.directory with parameters of type ClientConfigurationModifierConstructorDescriptionAWSDirectoryServiceAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Directory Service.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Directory Service. -
Uses of ClientConfiguration in com.amazonaws.services.dynamodbv2
Constructors in com.amazonaws.services.dynamodbv2 with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonDynamoDBAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on DynamoDB.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on DynamoDB.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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Amazon DynamoDB Streams.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Amazon DynamoDB Streams. -
Uses of ClientConfiguration in com.amazonaws.services.ec2
Constructors in com.amazonaws.services.ec2 with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonEC2AsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Amazon EC2.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Amazon EC2. -
Uses of ClientConfiguration in com.amazonaws.services.ecr
Constructors in com.amazonaws.services.ecr with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonECRAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Amazon ECR.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Amazon ECR. -
Uses of ClientConfiguration in com.amazonaws.services.ecs
Constructors in com.amazonaws.services.ecs with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonECSAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Amazon ECS.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Amazon ECS. -
Uses of ClientConfiguration in com.amazonaws.services.elasticache
Constructors in com.amazonaws.services.elasticache with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonElastiCacheAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Amazon ElastiCache.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Amazon ElastiCache. -
Uses of ClientConfiguration in com.amazonaws.services.elasticbeanstalk
Constructors in com.amazonaws.services.elasticbeanstalk with parameters of type ClientConfigurationModifierConstructorDescriptionAWSElasticBeanstalkAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Elastic Beanstalk.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Elastic Beanstalk. -
Uses of ClientConfiguration in com.amazonaws.services.elasticfilesystem
Constructors in com.amazonaws.services.elasticfilesystem with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonElasticFileSystemAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on EFS.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on EFS. -
Uses of ClientConfiguration in com.amazonaws.services.elasticloadbalancing
Constructors in com.amazonaws.services.elasticloadbalancing with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonElasticLoadBalancingAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Elastic Load Balancing.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Elastic Load Balancing. -
Uses of ClientConfiguration in com.amazonaws.services.elasticmapreduce
Constructors in com.amazonaws.services.elasticmapreduce with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonElasticMapReduceAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Amazon EMR.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Amazon EMR. -
Uses of ClientConfiguration in com.amazonaws.services.elasticsearch
Constructors in com.amazonaws.services.elasticsearch with parameters of type ClientConfigurationModifierConstructorDescriptionAWSElasticsearchAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Amazon Elasticsearch Service.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Amazon Elasticsearch Service. -
Uses of ClientConfiguration in com.amazonaws.services.elastictranscoder
Constructors in com.amazonaws.services.elastictranscoder with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonElasticTranscoderAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Amazon Elastic Transcoder.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Amazon Elastic Transcoder. -
Uses of ClientConfiguration in com.amazonaws.services.gamelift
Constructors in com.amazonaws.services.gamelift with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonGameLiftAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Amazon GameLift.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Amazon GameLift. -
Uses of ClientConfiguration in com.amazonaws.services.glacier
Constructors in com.amazonaws.services.glacier with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonGlacierAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Amazon Glacier.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Amazon Glacier. -
Uses of ClientConfiguration in com.amazonaws.services.glacier.transfer
Constructors in com.amazonaws.services.glacier.transfer with parameters of type ClientConfigurationModifierConstructorDescriptionArchiveTransferManager
(AWSCredentialsProvider credentialsProvider, ClientConfiguration clientConfiguration) Constructs a new ArchiveTransferManager, using the specified AWS credentials provider and client configuration.ArchiveTransferManager
(AmazonGlacierClient glacier, AWSCredentialsProvider credentialsProvider, ClientConfiguration clientConfiguration) Constructs a new ArchiveTransferManager, using the specified Amazon Glacier client, AWS credentials provider and client configuration.JobStatusMonitor
(AWSCredentialsProvider credentialsProvider, ClientConfiguration clientConfiguration) -
Uses of ClientConfiguration in com.amazonaws.services.identitymanagement
Constructors in com.amazonaws.services.identitymanagement with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonIdentityManagementAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on IAM.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on IAM. -
Uses of ClientConfiguration in com.amazonaws.services.importexport
Constructors in com.amazonaws.services.importexport with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonImportExportAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on AWS Import/Export.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on AWS Import/Export. -
Uses of ClientConfiguration in com.amazonaws.services.inspector
Constructors in com.amazonaws.services.inspector with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonInspectorAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Amazon Inspector.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Amazon Inspector. -
Uses of ClientConfiguration in com.amazonaws.services.iot
Constructors in com.amazonaws.services.iot with parameters of type ClientConfigurationModifierConstructorDescriptionAWSIotAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on AWS IoT.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on AWS IoT. -
Uses of ClientConfiguration in com.amazonaws.services.iotdata
Constructors in com.amazonaws.services.iotdata with parameters of type ClientConfigurationModifierConstructorDescriptionAWSIotDataAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on AWS IoT Data Plane.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on AWS IoT Data Plane. -
Uses of ClientConfiguration in com.amazonaws.services.kinesis
Constructors in com.amazonaws.services.kinesis with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonKinesisAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Kinesis.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Kinesis. -
Uses of ClientConfiguration in com.amazonaws.services.kinesisfirehose
Constructors in com.amazonaws.services.kinesisfirehose with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonKinesisFirehoseAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Firehose.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Firehose. -
Uses of ClientConfiguration in com.amazonaws.services.kms
Constructors in com.amazonaws.services.kms with parameters of type ClientConfigurationModifierConstructorDescriptionAWSKMSAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on KMS.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on KMS. -
Uses of ClientConfiguration in com.amazonaws.services.lambda
Constructors in com.amazonaws.services.lambda with parameters of type ClientConfigurationModifierConstructorDescriptionAWSLambdaAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on AWS Lambda.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on AWS Lambda. -
Uses of ClientConfiguration in com.amazonaws.services.logs
Constructors in com.amazonaws.services.logs with parameters of type ClientConfigurationModifierConstructorDescriptionAWSLogsAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Amazon CloudWatch Logs.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Amazon CloudWatch Logs. -
Uses of ClientConfiguration in com.amazonaws.services.machinelearning
Constructors in com.amazonaws.services.machinelearning with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonMachineLearningAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Amazon Machine Learning.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Amazon Machine Learning. -
Uses of ClientConfiguration in com.amazonaws.services.marketplacecommerceanalytics
Constructors in com.amazonaws.services.marketplacecommerceanalytics with parameters of type ClientConfigurationModifierConstructorDescriptionAWSMarketplaceCommerceAnalyticsAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on AWS Marketplace Commerce Analytics.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on AWS Marketplace Commerce Analytics. -
Uses of ClientConfiguration in com.amazonaws.services.marketplacemetering
Constructors in com.amazonaws.services.marketplacemetering with parameters of type ClientConfigurationModifierConstructorDescriptionAWSMarketplaceMeteringAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on AWSMarketplace Metering.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on AWSMarketplace Metering. -
Uses of ClientConfiguration in com.amazonaws.services.opsworks
Constructors in com.amazonaws.services.opsworks with parameters of type ClientConfigurationModifierConstructorDescriptionAWSOpsWorksAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on AWS OpsWorks.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on AWS OpsWorks. -
Uses of ClientConfiguration in com.amazonaws.services.rds
Constructors in com.amazonaws.services.rds with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonRDSAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Amazon RDS.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Amazon RDS. -
Uses of ClientConfiguration in com.amazonaws.services.redshift
Constructors in com.amazonaws.services.redshift with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonRedshiftAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Amazon Redshift.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Amazon Redshift. -
Uses of ClientConfiguration in com.amazonaws.services.route53
Constructors in com.amazonaws.services.route53 with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonRoute53AsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Route 53.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Route 53. -
Uses of ClientConfiguration in com.amazonaws.services.route53domains
Constructors in com.amazonaws.services.route53domains with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonRoute53DomainsAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Amazon Route 53 Domains.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Amazon Route 53 Domains. -
Uses of ClientConfiguration in com.amazonaws.services.s3
Constructors in com.amazonaws.services.s3 with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonS3Client
(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
(AWSCredentials awsCredentials, ClientConfiguration clientConfiguration) Constructs a new Amazon S3 client using the specified AWS credentials and client configuration to access Amazon S3.AmazonS3Client
(ClientConfiguration clientConfiguration) Constructs a new client using the specified client configuration to access Amazon S3.AmazonS3EncryptionClient
(AWSCredentialsProvider credentialsProvider, EncryptionMaterialsProvider kekMaterialsProvider, ClientConfiguration clientConfig, CryptoConfiguration cryptoConfig) AmazonS3EncryptionClient
(AWSCredentialsProvider credentialsProvider, EncryptionMaterialsProvider kekMaterialsProvider, ClientConfiguration clientConfig, CryptoConfiguration cryptoConfig, RequestMetricCollector requestMetricCollector) AmazonS3EncryptionClient
(AWSCredentials credentials, EncryptionMaterialsProvider encryptionMaterialsProvider, ClientConfiguration clientConfig, CryptoConfiguration cryptoConfig) 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
(AWSKMSClient kms, AWSCredentialsProvider credentialsProvider, EncryptionMaterialsProvider kekMaterialsProvider, ClientConfiguration clientConfig, CryptoConfiguration cryptoConfig, RequestMetricCollector requestMetricCollector) -
Uses of ClientConfiguration in com.amazonaws.services.securitytoken
Constructors in com.amazonaws.services.securitytoken with parameters of type ClientConfigurationModifierConstructorDescriptionAWSSecurityTokenServiceAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on AWS STS.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on AWS STS. -
Uses of ClientConfiguration in com.amazonaws.services.simpledb
Constructors in com.amazonaws.services.simpledb with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonSimpleDBAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Amazon SimpleDB.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Amazon SimpleDB. -
Uses of ClientConfiguration in com.amazonaws.services.simpleemail
Constructors in com.amazonaws.services.simpleemail with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonSimpleEmailServiceAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Amazon SES.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Amazon SES. -
Uses of ClientConfiguration in com.amazonaws.services.simplesystemsmanagement
Constructors in com.amazonaws.services.simplesystemsmanagement with parameters of type ClientConfigurationModifierConstructorDescriptionAWSSimpleSystemsManagementAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Amazon SSM.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Amazon SSM. -
Uses of ClientConfiguration in com.amazonaws.services.simpleworkflow
Methods in com.amazonaws.services.simpleworkflow that return ClientConfigurationModifier and TypeMethodDescriptionprotected ClientConfiguration
AmazonSimpleWorkflowClientConfigurationFactory.getDefaultConfig()
Constructors in com.amazonaws.services.simpleworkflow with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonSimpleWorkflowAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Amazon SWF.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Amazon SWF. -
Uses of ClientConfiguration in com.amazonaws.services.sns
Constructors in com.amazonaws.services.sns with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonSNSAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Amazon SNS.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Amazon SNS. -
Uses of ClientConfiguration in com.amazonaws.services.sqs
Constructors in com.amazonaws.services.sqs with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonSQSAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Amazon SQS.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Amazon SQS. -
Uses of ClientConfiguration in com.amazonaws.services.storagegateway
Constructors in com.amazonaws.services.storagegateway with parameters of type ClientConfigurationModifierConstructorDescriptionAWSStorageGatewayAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on AWS Storage Gateway.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on AWS Storage Gateway. -
Uses of ClientConfiguration in com.amazonaws.services.support
Constructors in com.amazonaws.services.support with parameters of type ClientConfigurationModifierConstructorDescriptionAWSSupportAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on AWS Support.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on AWS Support. -
Uses of ClientConfiguration in com.amazonaws.services.waf
Constructors in com.amazonaws.services.waf with parameters of type ClientConfigurationModifierConstructorDescriptionAWSWAFAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on WAF.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on WAF. -
Uses of ClientConfiguration in com.amazonaws.services.workspaces
Constructors in com.amazonaws.services.workspaces with parameters of type ClientConfigurationModifierConstructorDescriptionAmazonWorkspacesAsyncClient
(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
(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
(ClientConfiguration clientConfiguration) Constructs a new asynchronous client to invoke service methods on Amazon WorkSpaces.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
(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
(ClientConfiguration clientConfiguration) Constructs a new client to invoke service methods on Amazon WorkSpaces. -
Uses of ClientConfiguration in com.amazonaws.util
Methods in com.amazonaws.util with parameters of type ClientConfigurationModifier and TypeMethodDescriptionstatic 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.