interface ApplicationFleetAssociationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.AppStream.ApplicationFleetAssociationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsappstream#ApplicationFleetAssociationReference |
Java | software.amazon.awscdk.interfaces.appstream.ApplicationFleetAssociationReference |
Python | aws_cdk.interfaces.aws_appstream.ApplicationFleetAssociationReference |
TypeScript | aws-cdk-lib » interfaces » aws_appstream » ApplicationFleetAssociationReference |
A reference to a ApplicationFleetAssociation resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appstream as interfaces_aws_appstream } from 'aws-cdk-lib/interfaces';
const applicationFleetAssociationReference: interfaces_aws_appstream.ApplicationFleetAssociationReference = {
applicationArn: 'applicationArn',
fleetName: 'fleetName',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The ApplicationArn of the ApplicationFleetAssociation resource. |
| fleet | string | The FleetName of the ApplicationFleetAssociation resource. |
applicationArn
Type:
string
The ApplicationArn of the ApplicationFleetAssociation resource.
fleetName
Type:
string
The FleetName of the ApplicationFleetAssociation resource.

.NET
Go
Java
Python
TypeScript