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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUsageProfile.ProfileConfigurationPropertystatic final classAn 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.Returns union: either
IResolvableor Mapinvalid input: '<'String, eitherIResolvableorCfnUsageProfile.ConfigurationObjectProperty>- See Also:
-
getSessionConfiguration
A key-value map of configuration parameters for AWS Glue sessions.Returns union: either
IResolvableor Mapinvalid input: '<'String, eitherIResolvableorCfnUsageProfile.ConfigurationObjectProperty>- See Also:
-
builder
-