interface CfnStackFleetAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppStream.CfnStackFleetAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappstream#CfnStackFleetAssociationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.appstream.CfnStackFleetAssociationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_appstream.CfnStackFleetAssociationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appstream » CfnStackFleetAssociationMixinProps |
Properties for CfnStackFleetAssociationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appstream as appstream } from '@aws-cdk/cfn-property-mixins';
const cfnStackFleetAssociationMixinProps: appstream.CfnStackFleetAssociationMixinProps = {
fleetName: 'fleetName',
stackName: 'stackName',
};
Properties
| Name | Type | Description |
|---|---|---|
| fleet | string | The name of the fleet. |
| stack | string | The name of the stack. |
fleetName?
Type:
string
(optional)
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 .
stackName?
Type:
string
(optional)
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 .

.NET
Go
Java
Python
TypeScript