interface CfnStackFleetAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppStream.Mixins.CfnStackFleetAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappstream/mixins#CfnStackFleetAssociationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.appstream.mixins.CfnStackFleetAssociationMixinProps |
Python | aws_cdk.mixins_preview.aws_appstream.mixins.CfnStackFleetAssociationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_appstream » mixins » 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 { mixins as appstream_mixins } from '@aws-cdk/mixins-preview/aws-appstream';
const cfnStackFleetAssociationMixinProps: appstream_mixins.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