Interface CfnUsageProfile.ProfileConfigurationProperty

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

@Stability(Stable) public static interface CfnUsageProfile.ProfileConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Specifies the job and session values that an admin configures in an 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.*;
 ProfileConfigurationProperty profileConfigurationProperty = ProfileConfigurationProperty.builder()
         .jobConfiguration(Map.of(
                 "jobConfigurationKey", ConfigurationObjectProperty.builder()
                         .allowedValues(List.of("allowedValues"))
                         .defaultValue("defaultValue")
                         .maxValue("maxValue")
                         .minValue("minValue")
                         .build()))
         .sessionConfiguration(Map.of(
                 "sessionConfigurationKey", ConfigurationObjectProperty.builder()
                         .allowedValues(List.of("allowedValues"))
                         .defaultValue("defaultValue")
                         .maxValue("maxValue")
                         .minValue("minValue")
                         .build()))
         .build();
 

See Also: