CfnEntitlementProps

class aws_cdk.aws_appstream.CfnEntitlementProps(*, app_visibility, attributes, name, stack_name, description=None)

Bases: object

Properties for defining a CfnEntitlement.

Parameters:
  • app_visibility (str) – Specifies whether to entitle all apps or only selected apps.

  • attributes (Union[IResolvable, Sequence[Union[IResolvable, AttributeProperty, Dict[str, Any]]]]) – The attributes of the entitlement.

  • name (str) – The name of the entitlement.

  • stack_name (str) – The name of the stack.

  • description (Optional[str]) – The description of the entitlement.

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 import aws_appstream as appstream

cfn_entitlement_props = appstream.CfnEntitlementProps(
    app_visibility="appVisibility",
    attributes=[appstream.CfnEntitlement.AttributeProperty(
        name="name",
        value="value"
    )],
    name="name",
    stack_name="stackName",

    # the properties below are optional
    description="description"
)

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