public enum SdkSystemSetting extends Enum<SdkSystemSetting> implements SystemSetting
| Enum Constant and Description | 
|---|
ASYNC_HTTP_SERVICE_IMPL
Explicitly identify the default Async HTTP implementation the SDK will use. 
 | 
AWS_ACCESS_KEY_ID
Configure the AWS access key ID. 
 | 
AWS_CONFIG_FILE
Configure the default configuration file used in the ProfileFile. 
 | 
AWS_CONTAINER_AUTHORIZATION_TOKEN
An authorization token to pass to a container metadata service, only used when  
AWS_CONTAINER_CREDENTIALS_FULL_URI
 is specified. | 
AWS_CONTAINER_CREDENTIALS_FULL_URI
The full URI path to a localhost metadata service to be used. 
 | 
AWS_CONTAINER_CREDENTIALS_RELATIVE_URI
The elastic container metadata service path that should be called by the ContainerCredentialsProvider when
 loading credentials form the container metadata service. 
 | 
AWS_CONTAINER_SERVICE_ENDPOINT
The elastic container metadata service endpoint that should be called by the ContainerCredentialsProvider
 when loading data from the container metadata service. 
 | 
AWS_EC2_METADATA_DISABLED
Whether to load information such as credentials, regions from EC2 Metadata instance service. 
 | 
AWS_EC2_METADATA_SERVICE_ENDPOINT
The EC2 instance metadata service endpoint. 
 | 
AWS_EXECUTION_ENV
The execution environment of the SDK user. 
 | 
AWS_PROFILE
Configure the default profile that should be loaded from the  
AWS_CONFIG_FILE | 
AWS_REGION
Configure the default region. 
 | 
AWS_SECRET_ACCESS_KEY
Configure the AWS secret access key. 
 | 
AWS_SESSION_TOKEN
Configure the AWS session token. 
 | 
AWS_SHARED_CREDENTIALS_FILE
Configure the default credentials file used in the ProfileFile. 
 | 
BINARY_ION_ENABLED
Whether binary ION representation optimization should automatically be used if the service supports ION. 
 | 
CBOR_ENABLED
Whether CBOR optimization should automatically be used if its support is found on the classpath and the service supports
 CBOR-formatted JSON. 
 | 
SYNC_HTTP_SERVICE_IMPL
Explicitly identify the default synchronous HTTP implementation the SDK will use. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
String | 
defaultValue()
The default value of the setting (or empty if there is no default). 
 | 
String | 
environmentVariable()
The environment variable of the setting (or null if there is no environment variable for this setting). 
 | 
String | 
property()
The system property of the setting (or null if there is no property for this setting). 
 | 
static SdkSystemSetting | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static SdkSystemSetting[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOfgetBooleanValue, getBooleanValueOrThrow, getStringValue, getStringValueOrThrowpublic static final SdkSystemSetting AWS_CONFIG_FILE
public static final SdkSystemSetting AWS_PROFILE
AWS_CONFIG_FILEAWS_CONFIG_FILEpublic static final SdkSystemSetting AWS_SHARED_CREDENTIALS_FILE
public static final SdkSystemSetting AWS_ACCESS_KEY_ID
AWS_SECRET_ACCESS_KEY is not specified.public static final SdkSystemSetting AWS_SECRET_ACCESS_KEY
AWS_ACCESS_KEY_ID is not specified.public static final SdkSystemSetting AWS_SESSION_TOKEN
public static final SdkSystemSetting AWS_REGION
public static final SdkSystemSetting AWS_EC2_METADATA_DISABLED
public static final SdkSystemSetting AWS_EC2_METADATA_SERVICE_ENDPOINT
public static final SdkSystemSetting AWS_CONTAINER_SERVICE_ENDPOINT
AWS_CONTAINER_CREDENTIALS_RELATIVE_URI is not specified.public static final SdkSystemSetting AWS_CONTAINER_CREDENTIALS_RELATIVE_URI
AWS_CONTAINER_SERVICE_ENDPOINTpublic static final SdkSystemSetting AWS_CONTAINER_CREDENTIALS_FULL_URI
public static final SdkSystemSetting AWS_CONTAINER_AUTHORIZATION_TOKEN
AWS_CONTAINER_CREDENTIALS_FULL_URI
 is specified.AWS_CONTAINER_CREDENTIALS_FULL_URIpublic static final SdkSystemSetting SYNC_HTTP_SERVICE_IMPL
public static final SdkSystemSetting ASYNC_HTTP_SERVICE_IMPL
public static final SdkSystemSetting CBOR_ENABLED
public static final SdkSystemSetting BINARY_ION_ENABLED
public static final SdkSystemSetting AWS_EXECUTION_ENV
public static SdkSystemSetting[] values()
for (SdkSystemSetting c : SdkSystemSetting.values()) System.out.println(c);
public static SdkSystemSetting valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String property()
SystemSettingproperty in interface SystemSettingpublic String environmentVariable()
SystemSettingenvironmentVariable in interface SystemSettingpublic String defaultValue()
SystemSettingdefaultValue in interface SystemSettingCopyright © 2017 Amazon Web Services, Inc. All Rights Reserved.