Interface CfnUsageProfileMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUsageProfileMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:59.768Z")
@Stability(Stable)
public interface CfnUsageProfileMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnUsageProfilePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.glue.*;
CfnUsageProfileMixinProps cfnUsageProfileMixinProps = CfnUsageProfileMixinProps.builder()
.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")
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUsageProfileMixinPropsstatic final classAn implementation forCfnUsageProfileMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnUsageProfilePropsMixin.ProfileConfigurationPropertydefault StringA description of the usage profile.default StringgetName()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
-
getConfiguration
Returns union: eitherIResolvableorCfnUsageProfilePropsMixin.ProfileConfigurationProperty- See Also:
-
getDescription
A description of the usage profile.- See Also:
-
getName
The name of the usage profile.- See Also:
-
getTags
The tags to be applied to this UsageProfiles.- See Also:
-
builder
- Returns:
- a
CfnUsageProfileMixinProps.BuilderofCfnUsageProfileMixinProps
-