Interface CfnUsageProfileProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnUsageProfileProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-11-21T06:34:09.004Z") @Stability(Stable) public interface CfnUsageProfileProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnUsageProfile.

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.*;
 CfnUsageProfileProps cfnUsageProfileProps = CfnUsageProfileProps.builder()
         .name("name")
         // the properties below are optional
         .configuration(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())
         .description("description")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: