Class AwsClientOption<T>
java.lang.Object
software.amazon.awssdk.utils.AttributeMap.Key<T>
software.amazon.awssdk.core.client.config.ClientOption<T>
software.amazon.awssdk.awscore.client.config.AwsClientOption<T>
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final AwsClientOption
<AccountIdEndpointMode> Option used by the rest of the SDK to read theDefaultsMode
.static final AwsClientOption
<Region> AWS Region the client was configured with.static final AwsClientOption
<DefaultsMode> Configuration of the DEFAULTS_MODE.static final AwsClientOption
<IdentityProvider<? extends AwsCredentialsIdentity>> static final AwsClientOption
<AwsCredentialsProvider> Deprecated.static final AwsClientOption
<DefaultsMode> Option used by the rest of the SDK to read theDefaultsMode
.static final AwsClientOption
<Boolean> Whether the SDK should resolve dualstack endpoints instead of default endpoints.static final AwsClientOption
<String> The first part of the URL in the DNS name for the service.static final ClientOption
<Boolean> Whether the SDK should resolve fips endpoints instead of default endpoints.static final AwsClientOption
<String> Scope name to use during signing of a request.static final AwsClientOption
<Region> AWS Region to be used for signing the request.static final AwsClientOption
<IdentityProvider<? extends TokenIdentity>> Option to specific theSdkTokenProvider
to use for bearer token authorization.static final AwsClientOption
<SdkTokenProvider> Deprecated.static final AwsClientOption
<Boolean> Option to specify whether global endpoint should be used. -
Method Summary
Methods inherited from class software.amazon.awssdk.utils.AttributeMap.Key
convertValue, toString
-
Field Details
-
CREDENTIALS_PROVIDER
Deprecated.This option is deprecated in favor ofCREDENTIALS_IDENTITY_PROVIDER
.- See Also:
-
CREDENTIALS_IDENTITY_PROVIDER
public static final AwsClientOption<IdentityProvider<? extends AwsCredentialsIdentity>> CREDENTIALS_IDENTITY_PROVIDER- See Also:
-
AWS_REGION
AWS Region the client was configured with. Note that this is not always the signing region in the case of global services like IAM. -
SIGNING_REGION
AWS Region to be used for signing the request. This is not always same asAWS_REGION
in case of global services. -
DUALSTACK_ENDPOINT_ENABLED
Whether the SDK should resolve dualstack endpoints instead of default endpoints. SeeAwsClientBuilder.dualstackEnabled(Boolean)
. -
FIPS_ENDPOINT_ENABLED
Whether the SDK should resolve fips endpoints instead of default endpoints. SeeAwsClientBuilder.fipsEnabled(Boolean)
. -
SERVICE_SIGNING_NAME
Scope name to use during signing of a request. -
ENDPOINT_PREFIX
The first part of the URL in the DNS name for the service. Eg. in the endpoint "dynamodb.amazonaws.com", this is the "dynamodb". For standard services, this should match the "endpointPrefix" field in the AWS model. -
CONFIGURED_DEFAULTS_MODE
Configuration of the DEFAULTS_MODE. UnlikeDEFAULTS_MODE
, this may beDefaultsMode.AUTO
. -
DEFAULTS_MODE
Option used by the rest of the SDK to read theDefaultsMode
. This will never beDefaultsMode.AUTO
. -
ACCOUNT_ID_ENDPOINT_MODE
Option used by the rest of the SDK to read theDefaultsMode
. This will never beDefaultsMode.AUTO
. -
USE_GLOBAL_ENDPOINT
Option to specify whether global endpoint should be used. -
TOKEN_PROVIDER
Deprecated.Option to specific theSdkTokenProvider
to use for bearer token authorization. This option is deprecated in favor orTOKEN_IDENTITY_PROVIDER
-
TOKEN_IDENTITY_PROVIDER
public static final AwsClientOption<IdentityProvider<? extends TokenIdentity>> TOKEN_IDENTITY_PROVIDEROption to specific theSdkTokenProvider
to use for bearer token authorization.
-