interface CfnApplicationEntitlementAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppStream.Mixins.CfnApplicationEntitlementAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappstream/mixins#CfnApplicationEntitlementAssociationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.appstream.mixins.CfnApplicationEntitlementAssociationMixinProps |
Python | aws_cdk.mixins_preview.aws_appstream.mixins.CfnApplicationEntitlementAssociationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_appstream » mixins » CfnApplicationEntitlementAssociationMixinProps |
Properties for CfnApplicationEntitlementAssociationPropsMixin.
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 cfnApplicationEntitlementAssociationMixinProps: appstream_mixins.CfnApplicationEntitlementAssociationMixinProps = {
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
(optional)
The identifier of the application.
entitlementName?
Type:
string
(optional)
The name of the entitlement.
stackName?
Type:
string
(optional)
The name of the stack.

.NET
Go
Java
Python
TypeScript