Interface CfnEntitlementProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEntitlementProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-15T10:24:54.768Z")
@Stability(Stable)
public interface CfnEntitlementProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnEntitlement
.
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.appstream.*; CfnEntitlementProps cfnEntitlementProps = CfnEntitlementProps.builder() .appVisibility("appVisibility") .attributes(List.of(AttributeProperty.builder() .name("name") .value("value") .build())) .name("name") .stackName("stackName") // the properties below are optional .description("description") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnEntitlementProps
static final class
An implementation forCfnEntitlementProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnEntitlementProps.Builder
builder()
Specifies whether to entitle all apps or only selected apps.The attributes of the entitlement.default String
The description of the entitlement.getName()
The name of the entitlement.The name of the stack.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAppVisibility
Specifies whether to entitle all apps or only selected apps.- See Also:
-
getAttributes
The attributes of the entitlement.- See Also:
-
getName
The name of the entitlement.- See Also:
-
getStackName
The name of the stack.- See Also:
-
getDescription
The description of the entitlement.- See Also:
-
builder
- Returns:
- a
CfnEntitlementProps.Builder
ofCfnEntitlementProps
-