Class AwsAdvancedClientOption<T>
java.lang.Object
software.amazon.awssdk.utils.AttributeMap.Key<T>
software.amazon.awssdk.core.client.config.ClientOption<T>
software.amazon.awssdk.core.client.config.SdkAdvancedClientOption<T>
software.amazon.awssdk.awscore.client.config.AwsAdvancedClientOption<T>
- Type Parameters:
T
- The type of value associated with the option.
A collection of advanced options that can be configured on an AWS client via
ClientOverrideConfiguration.Builder.putAdvancedOption(SdkAdvancedClientOption, Object)
.
These options are usually not required outside of testing or advanced libraries, so most users should not need to configure them.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final AwsAdvancedClientOption
<Boolean> Whether region detection should be enabled.Fields inherited from class software.amazon.awssdk.core.client.config.SdkAdvancedClientOption
DISABLE_HOST_PREFIX_INJECTION, SIGNER, TOKEN_SIGNER, USER_AGENT_PREFIX, USER_AGENT_SUFFIX
-
Method Summary
Methods inherited from class software.amazon.awssdk.utils.AttributeMap.Key
convertValue, toString
-
Field Details
-
ENABLE_DEFAULT_REGION_DETECTION
Whether region detection should be enabled. Region detection is used when theAwsClientBuilder.region(Region)
is not specified. This is enabled by default.
-