interface CfnApplicationEntitlementAssociationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppStream.CfnApplicationEntitlementAssociationProps |
Java | software.amazon.awscdk.services.appstream.CfnApplicationEntitlementAssociationProps |
Python | aws_cdk.aws_appstream.CfnApplicationEntitlementAssociationProps |
TypeScript | @aws-cdk/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 * as appstream from '@aws-cdk/aws-appstream';
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
Java
Python
TypeScript