CfnStackFleetAssociationProps

class aws_cdk.aws_appstream.CfnStackFleetAssociationProps(*, fleet_name, stack_name)

Bases: object

Properties for defining a CfnStackFleetAssociation.

Parameters:
  • fleet_name (str) – The name of the fleet. To associate a fleet with a stack, you must specify a dependency on the fleet resource. For more information, see DependsOn Attribute .

  • stack_name (str) –

    The name of the stack. To associate a fleet with a stack, you must specify a dependency on the stack resource. For more information, see DependsOn Attribute .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.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_stack_fleet_association_props = appstream.CfnStackFleetAssociationProps(
    fleet_name="fleetName",
    stack_name="stackName"
)

Attributes

fleet_name

The name of the fleet.

To associate a fleet with a stack, you must specify a dependency on the fleet resource. For more information, see DependsOn Attribute .

See:

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

stack_name

The name of the stack.

To associate a fleet with a stack, you must specify a dependency on the stack resource. For more information, see DependsOn Attribute .

See:

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