interface ApplicationEntitlementAssociationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.AppStream.ApplicationEntitlementAssociationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsappstream#ApplicationEntitlementAssociationReference |
Java | software.amazon.awscdk.interfaces.appstream.ApplicationEntitlementAssociationReference |
Python | aws_cdk.interfaces.aws_appstream.ApplicationEntitlementAssociationReference |
TypeScript | aws-cdk-lib » interfaces » aws_appstream » ApplicationEntitlementAssociationReference |
A reference to a ApplicationEntitlementAssociation 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 applicationEntitlementAssociationReference: interfaces_aws_appstream.ApplicationEntitlementAssociationReference = {
applicationIdentifier: 'applicationIdentifier',
entitlementName: 'entitlementName',
stackName: 'stackName',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The ApplicationIdentifier of the ApplicationEntitlementAssociation resource. |
| entitlement | string | The EntitlementName of the ApplicationEntitlementAssociation resource. |
| stack | string | The StackName of the ApplicationEntitlementAssociation resource. |
applicationIdentifier
Type:
string
The ApplicationIdentifier of the ApplicationEntitlementAssociation resource.
entitlementName
Type:
string
The EntitlementName of the ApplicationEntitlementAssociation resource.
stackName
Type:
string
The StackName of the ApplicationEntitlementAssociation resource.

.NET
Go
Java
Python
TypeScript