interface CfnApplicationEntitlementAssociationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppStream.CfnApplicationEntitlementAssociationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappstream#CfnApplicationEntitlementAssociationProps |
Java | software.amazon.awscdk.services.appstream.CfnApplicationEntitlementAssociationProps |
Python | aws_cdk.aws_appstream.CfnApplicationEntitlementAssociationProps |
TypeScript | aws-cdk-lib » aws_appstream » CfnApplicationEntitlementAssociationProps |
Properties for defining a CfnApplicationEntitlementAssociation.
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-lib';
const cfnApplicationEntitlementAssociationProps: appstream.CfnApplicationEntitlementAssociationProps = {
applicationIdentifier: 'applicationIdentifier',
entitlementName: 'entitlementName',
stackName: 'stackName',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The identifier of the application. |
| entitlement | string | The name of the entitlement. |
| stack | string | The name of the stack. |
applicationIdentifier
Type:
string
The identifier of the application.
entitlementName
Type:
string
The name of the entitlement.
stackName
Type:
string
The name of the stack.

.NET
Go
Java
Python
TypeScript