public class ConfigurationOptionDescription extends Object implements Serializable, Cloneable
Describes the possible values for a configuration option.
Constructor and Description |
---|
ConfigurationOptionDescription() |
Modifier and Type | Method and Description |
---|---|
ConfigurationOptionDescription |
clone() |
boolean |
equals(Object obj) |
String |
getChangeSeverity()
An indication of which action is required if the value for this
configuration option changes:
|
String |
getDefaultValue()
The default value for this configuration option.
|
Integer |
getMaxLength()
If specified, the configuration option must be a string value no longer
than this value.
|
Integer |
getMaxValue()
If specified, the configuration option must be a numeric value less than
this value.
|
Integer |
getMinValue()
If specified, the configuration option must be a numeric value greater
than this value.
|
String |
getName()
The name of the configuration option.
|
String |
getNamespace()
A unique namespace identifying the option's associated AWS resource.
|
OptionRestrictionRegex |
getRegex()
If specified, the configuration option must be a string value that
satisfies this regular expression.
|
Boolean |
getUserDefined()
An indication of whether the user defined this configuration option:
|
List<String> |
getValueOptions()
If specified, values for the configuration option are selected from this
list.
|
String |
getValueType()
An indication of which type of values this option has and whether it is
allowable to select one or more than one of the possible values:
|
int |
hashCode() |
Boolean |
isUserDefined()
An indication of whether the user defined this configuration option:
|
void |
setChangeSeverity(String changeSeverity)
An indication of which action is required if the value for this
configuration option changes:
|
void |
setDefaultValue(String defaultValue)
The default value for this configuration option.
|
void |
setMaxLength(Integer maxLength)
If specified, the configuration option must be a string value no longer
than this value.
|
void |
setMaxValue(Integer maxValue)
If specified, the configuration option must be a numeric value less than
this value.
|
void |
setMinValue(Integer minValue)
If specified, the configuration option must be a numeric value greater
than this value.
|
void |
setName(String name)
The name of the configuration option.
|
void |
setNamespace(String namespace)
A unique namespace identifying the option's associated AWS resource.
|
void |
setRegex(OptionRestrictionRegex regex)
If specified, the configuration option must be a string value that
satisfies this regular expression.
|
void |
setUserDefined(Boolean userDefined)
An indication of whether the user defined this configuration option:
|
void |
setValueOptions(Collection<String> valueOptions)
If specified, values for the configuration option are selected from this
list.
|
void |
setValueType(ConfigurationOptionValueType valueType)
An indication of which type of values this option has and whether it is
allowable to select one or more than one of the possible values:
|
void |
setValueType(String valueType)
An indication of which type of values this option has and whether it is
allowable to select one or more than one of the possible values:
|
String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ConfigurationOptionDescription |
withChangeSeverity(String changeSeverity)
An indication of which action is required if the value for this
configuration option changes:
|
ConfigurationOptionDescription |
withDefaultValue(String defaultValue)
The default value for this configuration option.
|
ConfigurationOptionDescription |
withMaxLength(Integer maxLength)
If specified, the configuration option must be a string value no longer
than this value.
|
ConfigurationOptionDescription |
withMaxValue(Integer maxValue)
If specified, the configuration option must be a numeric value less than
this value.
|
ConfigurationOptionDescription |
withMinValue(Integer minValue)
If specified, the configuration option must be a numeric value greater
than this value.
|
ConfigurationOptionDescription |
withName(String name)
The name of the configuration option.
|
ConfigurationOptionDescription |
withNamespace(String namespace)
A unique namespace identifying the option's associated AWS resource.
|
ConfigurationOptionDescription |
withRegex(OptionRestrictionRegex regex)
If specified, the configuration option must be a string value that
satisfies this regular expression.
|
ConfigurationOptionDescription |
withUserDefined(Boolean userDefined)
An indication of whether the user defined this configuration option:
|
ConfigurationOptionDescription |
withValueOptions(Collection<String> valueOptions)
If specified, values for the configuration option are selected from this
list.
|
ConfigurationOptionDescription |
withValueOptions(String... valueOptions)
If specified, values for the configuration option are selected from this
list.
|
ConfigurationOptionDescription |
withValueType(ConfigurationOptionValueType valueType)
An indication of which type of values this option has and whether it is
allowable to select one or more than one of the possible values:
|
ConfigurationOptionDescription |
withValueType(String valueType)
An indication of which type of values this option has and whether it is
allowable to select one or more than one of the possible values:
|
public void setNamespace(String namespace)
A unique namespace identifying the option's associated AWS resource.
namespace
- A unique namespace identifying the option's associated AWS
resource.public String getNamespace()
A unique namespace identifying the option's associated AWS resource.
public ConfigurationOptionDescription withNamespace(String namespace)
A unique namespace identifying the option's associated AWS resource.
namespace
- A unique namespace identifying the option's associated AWS
resource.public void setName(String name)
The name of the configuration option.
name
- The name of the configuration option.public String getName()
The name of the configuration option.
public ConfigurationOptionDescription withName(String name)
The name of the configuration option.
name
- The name of the configuration option.public void setDefaultValue(String defaultValue)
The default value for this configuration option.
defaultValue
- The default value for this configuration option.public String getDefaultValue()
The default value for this configuration option.
public ConfigurationOptionDescription withDefaultValue(String defaultValue)
The default value for this configuration option.
defaultValue
- The default value for this configuration option.public void setChangeSeverity(String changeSeverity)
An indication of which action is required if the value for this configuration option changes:
NoInterruption
: There is no interruption to the
environment or application availability.RestartEnvironment
: The environment is entirely
restarted, all AWS resources are deleted and recreated, and the
environment is unavailable during the process.RestartApplicationServer
: The environment is available
the entire time. However, a short application outage occurs when the
application servers on the running Amazon EC2 instances are restarted.changeSeverity
- An indication of which action is required if the value for this
configuration option changes:
NoInterruption
: There is no interruption to the
environment or application availability.RestartEnvironment
: The environment is entirely
restarted, all AWS resources are deleted and recreated, and the
environment is unavailable during the process.RestartApplicationServer
: The environment is
available the entire time. However, a short application outage
occurs when the application servers on the running Amazon EC2
instances are restarted.public String getChangeSeverity()
An indication of which action is required if the value for this configuration option changes:
NoInterruption
: There is no interruption to the
environment or application availability.RestartEnvironment
: The environment is entirely
restarted, all AWS resources are deleted and recreated, and the
environment is unavailable during the process.RestartApplicationServer
: The environment is available
the entire time. However, a short application outage occurs when the
application servers on the running Amazon EC2 instances are restarted.NoInterruption
: There is no interruption to the
environment or application availability.RestartEnvironment
: The environment is entirely
restarted, all AWS resources are deleted and recreated, and the
environment is unavailable during the process.RestartApplicationServer
: The environment is
available the entire time. However, a short application outage
occurs when the application servers on the running Amazon EC2
instances are restarted.public ConfigurationOptionDescription withChangeSeverity(String changeSeverity)
An indication of which action is required if the value for this configuration option changes:
NoInterruption
: There is no interruption to the
environment or application availability.RestartEnvironment
: The environment is entirely
restarted, all AWS resources are deleted and recreated, and the
environment is unavailable during the process.RestartApplicationServer
: The environment is available
the entire time. However, a short application outage occurs when the
application servers on the running Amazon EC2 instances are restarted.changeSeverity
- An indication of which action is required if the value for this
configuration option changes:
NoInterruption
: There is no interruption to the
environment or application availability.RestartEnvironment
: The environment is entirely
restarted, all AWS resources are deleted and recreated, and the
environment is unavailable during the process.RestartApplicationServer
: The environment is
available the entire time. However, a short application outage
occurs when the application servers on the running Amazon EC2
instances are restarted.public void setUserDefined(Boolean userDefined)
An indication of whether the user defined this configuration option:
true
: This configuration option was defined by the user. It
is a valid choice for specifying if this as an
Option to Remove
when updating configuration settings.
false
: This configuration was not defined by the user.
Constraint: You can remove only UserDefined
options from a
configuration.
Valid Values: true
| false
userDefined
- An indication of whether the user defined this configuration
option:
true
: This configuration option was defined by the
user. It is a valid choice for specifying if this as an
Option to Remove
when updating configuration
settings.
false
: This configuration was not defined by the
user.
Constraint: You can remove only UserDefined
options
from a configuration.
Valid Values: true
| false
public Boolean getUserDefined()
An indication of whether the user defined this configuration option:
true
: This configuration option was defined by the user. It
is a valid choice for specifying if this as an
Option to Remove
when updating configuration settings.
false
: This configuration was not defined by the user.
Constraint: You can remove only UserDefined
options from a
configuration.
Valid Values: true
| false
true
: This configuration option was defined by the
user. It is a valid choice for specifying if this as an
Option to Remove
when updating configuration
settings.
false
: This configuration was not defined by
the user.
Constraint: You can remove only UserDefined
options
from a configuration.
Valid Values: true
| false
public ConfigurationOptionDescription withUserDefined(Boolean userDefined)
An indication of whether the user defined this configuration option:
true
: This configuration option was defined by the user. It
is a valid choice for specifying if this as an
Option to Remove
when updating configuration settings.
false
: This configuration was not defined by the user.
Constraint: You can remove only UserDefined
options from a
configuration.
Valid Values: true
| false
userDefined
- An indication of whether the user defined this configuration
option:
true
: This configuration option was defined by the
user. It is a valid choice for specifying if this as an
Option to Remove
when updating configuration
settings.
false
: This configuration was not defined by the
user.
Constraint: You can remove only UserDefined
options
from a configuration.
Valid Values: true
| false
public Boolean isUserDefined()
An indication of whether the user defined this configuration option:
true
: This configuration option was defined by the user. It
is a valid choice for specifying if this as an
Option to Remove
when updating configuration settings.
false
: This configuration was not defined by the user.
Constraint: You can remove only UserDefined
options from a
configuration.
Valid Values: true
| false
true
: This configuration option was defined by the
user. It is a valid choice for specifying if this as an
Option to Remove
when updating configuration
settings.
false
: This configuration was not defined by
the user.
Constraint: You can remove only UserDefined
options
from a configuration.
Valid Values: true
| false
public void setValueType(String valueType)
An indication of which type of values this option has and whether it is allowable to select one or more than one of the possible values:
Scalar
: Values for this option are a single selection
from the possible values, or an unformatted string, or numeric value
governed by the MIN/MAX/Regex
constraints.List
: Values for this option are multiple selections
from the possible values.Boolean
: Values for this option are either
true
or false
.Json
: Values for this option are a JSON representation
of a ConfigDocument
.valueType
- An indication of which type of values this option has and whether
it is allowable to select one or more than one of the possible
values:
Scalar
: Values for this option are a single
selection from the possible values, or an unformatted string, or
numeric value governed by the MIN/MAX/Regex
constraints.List
: Values for this option are multiple
selections from the possible values.Boolean
: Values for this option are either
true
or false
.Json
: Values for this option are a JSON
representation of a ConfigDocument
.ConfigurationOptionValueType
public String getValueType()
An indication of which type of values this option has and whether it is allowable to select one or more than one of the possible values:
Scalar
: Values for this option are a single selection
from the possible values, or an unformatted string, or numeric value
governed by the MIN/MAX/Regex
constraints.List
: Values for this option are multiple selections
from the possible values.Boolean
: Values for this option are either
true
or false
.Json
: Values for this option are a JSON representation
of a ConfigDocument
.Scalar
: Values for this option are a single
selection from the possible values, or an unformatted string, or
numeric value governed by the MIN/MAX/Regex
constraints.List
: Values for this option are multiple
selections from the possible values.Boolean
: Values for this option are either
true
or false
.Json
: Values for this option are a JSON
representation of a ConfigDocument
.ConfigurationOptionValueType
public ConfigurationOptionDescription withValueType(String valueType)
An indication of which type of values this option has and whether it is allowable to select one or more than one of the possible values:
Scalar
: Values for this option are a single selection
from the possible values, or an unformatted string, or numeric value
governed by the MIN/MAX/Regex
constraints.List
: Values for this option are multiple selections
from the possible values.Boolean
: Values for this option are either
true
or false
.Json
: Values for this option are a JSON representation
of a ConfigDocument
.valueType
- An indication of which type of values this option has and whether
it is allowable to select one or more than one of the possible
values:
Scalar
: Values for this option are a single
selection from the possible values, or an unformatted string, or
numeric value governed by the MIN/MAX/Regex
constraints.List
: Values for this option are multiple
selections from the possible values.Boolean
: Values for this option are either
true
or false
.Json
: Values for this option are a JSON
representation of a ConfigDocument
.ConfigurationOptionValueType
public void setValueType(ConfigurationOptionValueType valueType)
An indication of which type of values this option has and whether it is allowable to select one or more than one of the possible values:
Scalar
: Values for this option are a single selection
from the possible values, or an unformatted string, or numeric value
governed by the MIN/MAX/Regex
constraints.List
: Values for this option are multiple selections
from the possible values.Boolean
: Values for this option are either
true
or false
.Json
: Values for this option are a JSON representation
of a ConfigDocument
.valueType
- An indication of which type of values this option has and whether
it is allowable to select one or more than one of the possible
values:
Scalar
: Values for this option are a single
selection from the possible values, or an unformatted string, or
numeric value governed by the MIN/MAX/Regex
constraints.List
: Values for this option are multiple
selections from the possible values.Boolean
: Values for this option are either
true
or false
.Json
: Values for this option are a JSON
representation of a ConfigDocument
.ConfigurationOptionValueType
public ConfigurationOptionDescription withValueType(ConfigurationOptionValueType valueType)
An indication of which type of values this option has and whether it is allowable to select one or more than one of the possible values:
Scalar
: Values for this option are a single selection
from the possible values, or an unformatted string, or numeric value
governed by the MIN/MAX/Regex
constraints.List
: Values for this option are multiple selections
from the possible values.Boolean
: Values for this option are either
true
or false
.Json
: Values for this option are a JSON representation
of a ConfigDocument
.valueType
- An indication of which type of values this option has and whether
it is allowable to select one or more than one of the possible
values:
Scalar
: Values for this option are a single
selection from the possible values, or an unformatted string, or
numeric value governed by the MIN/MAX/Regex
constraints.List
: Values for this option are multiple
selections from the possible values.Boolean
: Values for this option are either
true
or false
.Json
: Values for this option are a JSON
representation of a ConfigDocument
.ConfigurationOptionValueType
public List<String> getValueOptions()
If specified, values for the configuration option are selected from this list.
public void setValueOptions(Collection<String> valueOptions)
If specified, values for the configuration option are selected from this list.
valueOptions
- If specified, values for the configuration option are selected
from this list.public ConfigurationOptionDescription withValueOptions(String... valueOptions)
If specified, values for the configuration option are selected from this list.
NOTE: This method appends the values to the existing list (if
any). Use setValueOptions(java.util.Collection)
or
withValueOptions(java.util.Collection)
if you want to override
the existing values.
valueOptions
- If specified, values for the configuration option are selected
from this list.public ConfigurationOptionDescription withValueOptions(Collection<String> valueOptions)
If specified, values for the configuration option are selected from this list.
valueOptions
- If specified, values for the configuration option are selected
from this list.public void setMinValue(Integer minValue)
If specified, the configuration option must be a numeric value greater than this value.
minValue
- If specified, the configuration option must be a numeric value
greater than this value.public Integer getMinValue()
If specified, the configuration option must be a numeric value greater than this value.
public ConfigurationOptionDescription withMinValue(Integer minValue)
If specified, the configuration option must be a numeric value greater than this value.
minValue
- If specified, the configuration option must be a numeric value
greater than this value.public void setMaxValue(Integer maxValue)
If specified, the configuration option must be a numeric value less than this value.
maxValue
- If specified, the configuration option must be a numeric value
less than this value.public Integer getMaxValue()
If specified, the configuration option must be a numeric value less than this value.
public ConfigurationOptionDescription withMaxValue(Integer maxValue)
If specified, the configuration option must be a numeric value less than this value.
maxValue
- If specified, the configuration option must be a numeric value
less than this value.public void setMaxLength(Integer maxLength)
If specified, the configuration option must be a string value no longer than this value.
maxLength
- If specified, the configuration option must be a string value no
longer than this value.public Integer getMaxLength()
If specified, the configuration option must be a string value no longer than this value.
public ConfigurationOptionDescription withMaxLength(Integer maxLength)
If specified, the configuration option must be a string value no longer than this value.
maxLength
- If specified, the configuration option must be a string value no
longer than this value.public void setRegex(OptionRestrictionRegex regex)
If specified, the configuration option must be a string value that satisfies this regular expression.
regex
- If specified, the configuration option must be a string value that
satisfies this regular expression.public OptionRestrictionRegex getRegex()
If specified, the configuration option must be a string value that satisfies this regular expression.
public ConfigurationOptionDescription withRegex(OptionRestrictionRegex regex)
If specified, the configuration option must be a string value that satisfies this regular expression.
regex
- If specified, the configuration option must be a string value that
satisfies this regular expression.public String toString()
toString
in class Object
Object.toString()
public ConfigurationOptionDescription clone()
Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.