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 .
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.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 .
- 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 .