interface CfnEntitlementMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppStream.Mixins.CfnEntitlementMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappstream/mixins#CfnEntitlementMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.appstream.mixins.CfnEntitlementMixinProps |
Python | aws_cdk.mixins_preview.aws_appstream.mixins.CfnEntitlementMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_appstream » mixins » CfnEntitlementMixinProps |
Properties for CfnEntitlementPropsMixin.
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 cfnEntitlementMixinProps: appstream_mixins.CfnEntitlementMixinProps = {
appVisibility: 'appVisibility',
attributes: [{
name: 'name',
value: 'value',
}],
description: 'description',
name: 'name',
stackName: 'stackName',
};
Properties
| Name | Type | Description |
|---|---|---|
| app | string | Specifies whether to entitle all apps or only selected apps. |
| attributes? | IResolvable | (IResolvable | Attribute)[] | The attributes of the entitlement. |
| description? | string | The description of the entitlement. |
| name? | string | The name of the entitlement. |
| stack | string | The name of the stack. |
appVisibility?
Type:
string
(optional)
Specifies whether to entitle all apps or only selected apps.
attributes?
Type:
IResolvable | (IResolvable | Attribute)[]
(optional)
The attributes of the entitlement.
description?
Type:
string
(optional)
The description of the entitlement.
name?
Type:
string
(optional)
The name of the entitlement.
stackName?
Type:
string
(optional)
The name of the stack.

.NET
Go
Java
Python
TypeScript