public enum S3SystemSetting extends Enum<S3SystemSetting> implements SystemSetting
| Enum Constant and Description |
|---|
AWS_S3_DISABLE_MULTIREGION_ACCESS_POINTS |
AWS_S3_USE_ARN_REGION |
| 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 S3SystemSetting |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static S3SystemSetting[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfgetBooleanValue, getBooleanValueOrThrow, getIntegerValue, getIntegerValueOrThrow, getNonDefaultStringValue, getStringValue, getStringValueFromEnvironmentVariable, getStringValueOrThrowpublic static final S3SystemSetting AWS_S3_USE_ARN_REGION
public static final S3SystemSetting AWS_S3_DISABLE_MULTIREGION_ACCESS_POINTS
public static S3SystemSetting[] values()
for (S3SystemSetting c : S3SystemSetting.values()) System.out.println(c);
public static S3SystemSetting 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 © 2026. All rights reserved.