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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnUsageProfile.ProfileConfigurationProperty
static final class
An implementation forCfnUsageProfile.ProfileConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getJobConfiguration
A key-value map of configuration parameters for AWS Glue jobs.- See Also:
-
getSessionConfiguration
A key-value map of configuration parameters for AWS Glue sessions.- See Also:
-
builder
-