CfnEntitlementMixinProps

class aws_cdk.mixins_preview.aws_appstream.mixins.CfnEntitlementMixinProps(*, app_visibility=None, attributes=None, description=None, name=None, stack_name=None)

Bases: object

Properties 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-entitlement.html

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-entitlement.html#cfn-appstream-entitlement-appvisibility

attributes

The attributes of the entitlement.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-entitlement.html#cfn-appstream-entitlement-attributes

description

The description of the entitlement.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-entitlement.html#cfn-appstream-entitlement-description

name

The name of the entitlement.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-entitlement.html#cfn-appstream-entitlement-name

stack_name

The name of the stack.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-entitlement.html#cfn-appstream-entitlement-stackname