Interface CfnUsageProfile.ConfigurationObjectProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUsageProfile.ConfigurationObjectProperty.Jsii$Proxy
- Enclosing class:
CfnUsageProfile
@Stability(Stable)
public static interface CfnUsageProfile.ConfigurationObjectProperty
extends software.amazon.jsii.JsiiSerializable
Specifies the values that an admin sets for each job or session parameter configured in a AWS Glue usage profile.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.glue.*;
ConfigurationObjectProperty configurationObjectProperty = ConfigurationObjectProperty.builder()
.allowedValues(List.of("allowedValues"))
.defaultValue("defaultValue")
.maxValue("maxValue")
.minValue("minValue")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUsageProfile.ConfigurationObjectPropertystatic final classAn implementation forCfnUsageProfile.ConfigurationObjectProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAllowedValues
A list of allowed values for the parameter.- See Also:
-
getDefaultValue
A default value for the parameter.- See Also:
-
getMaxValue
A maximum allowed value for the parameter.- See Also:
-
getMinValue
A minimum allowed value for the parameter.- See Also:
-
builder
-