@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class ConfigurationObject extends Object implements Serializable, Cloneable, StructuredPojo
Specifies the values that an admin sets for each job or session parameter configured in a Glue usage profile.
Constructor and Description |
---|
ConfigurationObject() |
Modifier and Type | Method and Description |
---|---|
ConfigurationObject |
clone() |
boolean |
equals(Object obj) |
List<String> |
getAllowedValues()
A list of allowed values for the parameter.
|
String |
getDefaultValue()
A default value for the parameter.
|
String |
getMaxValue()
A maximum allowed value for the parameter.
|
String |
getMinValue()
A minimum allowed value for the parameter.
|
int |
hashCode() |
void |
marshall(ProtocolMarshaller protocolMarshaller)
Marshalls this structured data using the given
ProtocolMarshaller . |
void |
setAllowedValues(Collection<String> allowedValues)
A list of allowed values for the parameter.
|
void |
setDefaultValue(String defaultValue)
A default value for the parameter.
|
void |
setMaxValue(String maxValue)
A maximum allowed value for the parameter.
|
void |
setMinValue(String minValue)
A minimum allowed value for the parameter.
|
String |
toString()
Returns a string representation of this object.
|
ConfigurationObject |
withAllowedValues(Collection<String> allowedValues)
A list of allowed values for the parameter.
|
ConfigurationObject |
withAllowedValues(String... allowedValues)
A list of allowed values for the parameter.
|
ConfigurationObject |
withDefaultValue(String defaultValue)
A default value for the parameter.
|
ConfigurationObject |
withMaxValue(String maxValue)
A maximum allowed value for the parameter.
|
ConfigurationObject |
withMinValue(String minValue)
A minimum allowed value for the parameter.
|
public void setDefaultValue(String defaultValue)
A default value for the parameter.
defaultValue
- A default value for the parameter.public String getDefaultValue()
A default value for the parameter.
public ConfigurationObject withDefaultValue(String defaultValue)
A default value for the parameter.
defaultValue
- A default value for the parameter.public List<String> getAllowedValues()
A list of allowed values for the parameter.
public void setAllowedValues(Collection<String> allowedValues)
A list of allowed values for the parameter.
allowedValues
- A list of allowed values for the parameter.public ConfigurationObject withAllowedValues(String... allowedValues)
A list of allowed values for the parameter.
NOTE: This method appends the values to the existing list (if any). Use
setAllowedValues(java.util.Collection)
or withAllowedValues(java.util.Collection)
if you want
to override the existing values.
allowedValues
- A list of allowed values for the parameter.public ConfigurationObject withAllowedValues(Collection<String> allowedValues)
A list of allowed values for the parameter.
allowedValues
- A list of allowed values for the parameter.public void setMinValue(String minValue)
A minimum allowed value for the parameter.
minValue
- A minimum allowed value for the parameter.public String getMinValue()
A minimum allowed value for the parameter.
public ConfigurationObject withMinValue(String minValue)
A minimum allowed value for the parameter.
minValue
- A minimum allowed value for the parameter.public void setMaxValue(String maxValue)
A maximum allowed value for the parameter.
maxValue
- A maximum allowed value for the parameter.public String getMaxValue()
A maximum allowed value for the parameter.
public ConfigurationObject withMaxValue(String maxValue)
A maximum allowed value for the parameter.
maxValue
- A maximum allowed value for the parameter.public String toString()
toString
in class Object
Object.toString()
public ConfigurationObject clone()
public void marshall(ProtocolMarshaller protocolMarshaller)
StructuredPojo
ProtocolMarshaller
.marshall
in interface StructuredPojo
protocolMarshaller
- Implementation of ProtocolMarshaller
used to marshall this object's data.