CfnEntitlementMixinProps
- class aws_cdk.mixins_preview.aws_appstream.mixins.CfnEntitlementMixinProps(*, app_visibility=None, attributes=None, description=None, name=None, stack_name=None)
Bases:
objectProperties for CfnEntitlementPropsMixin.
- Parameters:
app_visibility (
Optional[str]) – Specifies whether to entitle all apps or only selected apps.attributes (
Union[IResolvable,Sequence[Union[IResolvable,AttributeProperty,Dict[str,Any]]],None]) – The attributes of the entitlement.description (
Optional[str]) – The description of the entitlement.name (
Optional[str]) – The name of the entitlement.stack_name (
Optional[str]) – The name of the stack.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_appstream import mixins as appstream_mixins cfn_entitlement_mixin_props = appstream_mixins.CfnEntitlementMixinProps( app_visibility="appVisibility", attributes=[appstream_mixins.CfnEntitlementPropsMixin.AttributeProperty( name="name", value="value" )], description="description", name="name", stack_name="stackName" )
Attributes
- app_visibility
Specifies whether to entitle all apps or only selected apps.
- attributes
The attributes of the entitlement.
- description
The description of the entitlement.
- name
The name of the entitlement.
- stack_name
The name of the stack.