CfnStackFleetAssociationMixinProps
- class aws_cdk.mixins_preview.aws_appstream.mixins.CfnStackFleetAssociationMixinProps(*, fleet_name=None, stack_name=None)
Bases:
objectProperties for CfnStackFleetAssociationPropsMixin.
- Parameters:
fleet_name (
Optional[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 (
Optional[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:
- 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_stack_fleet_association_mixin_props = appstream_mixins.CfnStackFleetAssociationMixinProps( 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 .