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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnUsageProfileProps
static final class
An implementation forCfnUsageProfileProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the usage profile.- See Also:
-
getConfiguration
- 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.Builder
ofCfnUsageProfileProps
-