Interface CfnUsageProfileProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUsageProfileProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-05T22:26:37.584Z")
@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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUsageProfilePropsstatic final classAn implementation forCfnUsageProfileProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnUsageProfileProps.Builderbuilder()default ObjectReturns union: eitherIResolvableorCfnUsageProfile.ProfileConfigurationPropertydefault StringA description of the usage profile.getName()The name of the usage profile.getTags()The tags to be applied to this UsageProfiles.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the usage profile.- See Also:
-
getConfiguration
Returns union: eitherIResolvableorCfnUsageProfile.ProfileConfigurationProperty- See Also:
-
getDescription
A description of the usage profile.- See Also:
-
getTags
The tags to be applied to this UsageProfiles.- See Also:
-
builder
- Returns:
- a
CfnUsageProfileProps.BuilderofCfnUsageProfileProps
-