Class ConfigurationObject
- java.lang.Object
-
- software.amazon.awssdk.services.glue.model.ConfigurationObject
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<ConfigurationObject.Builder,ConfigurationObject>
@Generated("software.amazon.awssdk:codegen") public final class ConfigurationObject extends Object implements SdkPojo, Serializable, ToCopyableBuilder<ConfigurationObject.Builder,ConfigurationObject>
Specifies the values that an admin sets for each job or session parameter configured in a Glue usage profile.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceConfigurationObject.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>allowedValues()A list of allowed values for the parameter.static ConfigurationObject.Builderbuilder()StringdefaultValue()A default value for the parameter.booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)booleanhasAllowedValues()For responses, this returns true if the service returned a value for the AllowedValues property.inthashCode()StringmaxValue()A maximum allowed value for the parameter.StringminValue()A minimum allowed value for the parameter.List<SdkField<?>>sdkFields()static Class<? extends ConfigurationObject.Builder>serializableBuilderClass()ConfigurationObject.BuildertoBuilder()StringtoString()Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
defaultValue
public final String defaultValue()
A default value for the parameter.
- Returns:
- A default value for the parameter.
-
hasAllowedValues
public final boolean hasAllowedValues()
For responses, this returns true if the service returned a value for the AllowedValues property. This DOES NOT check that the value is non-empty (for which, you should check theisEmpty()method on the property). This is useful because the SDK will never return a null collection or map, but you may need to differentiate between the service returning nothing (or null) and the service returning an empty collection or map. For requests, this returns true if a value for the property was specified in the request builder, and false if a value was not specified.
-
allowedValues
public final List<String> allowedValues()
A list of allowed values for the parameter.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that you can differentiate between null and empty), you can use the
hasAllowedValues()method.- Returns:
- A list of allowed values for the parameter.
-
minValue
public final String minValue()
A minimum allowed value for the parameter.
- Returns:
- A minimum allowed value for the parameter.
-
maxValue
public final String maxValue()
A maximum allowed value for the parameter.
- Returns:
- A maximum allowed value for the parameter.
-
toBuilder
public ConfigurationObject.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<ConfigurationObject.Builder,ConfigurationObject>
-
builder
public static ConfigurationObject.Builder builder()
-
serializableBuilderClass
public static Class<? extends ConfigurationObject.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
-