Interface CfnEntitlementMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEntitlementMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:55.910Z")
@Stability(Stable)
public interface CfnEntitlementMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnEntitlementPropsMixin.
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.appstream.*;
CfnEntitlementMixinProps cfnEntitlementMixinProps = CfnEntitlementMixinProps.builder()
.appVisibility("appVisibility")
.attributes(List.of(AttributeProperty.builder()
.name("name")
.value("value")
.build()))
.description("description")
.name("name")
.stackName("stackName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEntitlementMixinPropsstatic final classAn implementation forCfnEntitlementMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringSpecifies whether to entitle all apps or only selected apps.default ObjectThe attributes of the entitlement.default StringThe description of the entitlement.default StringgetName()The name of the entitlement.default StringThe 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.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnEntitlementPropsMixin.AttributeProperty>- See Also:
-
getDescription
The description of the entitlement.- See Also:
-
getName
The name of the entitlement.- See Also:
-
getStackName
The name of the stack.- See Also:
-
builder
- Returns:
- a
CfnEntitlementMixinProps.BuilderofCfnEntitlementMixinProps
-