Interface CfnUsageProfilePropsMixin.ConfigurationObjectProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnUsageProfilePropsMixin.ConfigurationObjectProperty.Jsii$Proxy
Enclosing class:
CfnUsageProfilePropsMixin

@Stability(Stable) public static interface CfnUsageProfilePropsMixin.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.cfnpropertymixins.services.glue.*;
 ConfigurationObjectProperty configurationObjectProperty = ConfigurationObjectProperty.builder()
         .allowedValues(List.of("allowedValues"))
         .defaultValue("defaultValue")
         .maxValue("maxValue")
         .minValue("minValue")
         .build();
 

See Also: