interface CfnEntitlementProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppStream.CfnEntitlementProps |
Java | software.amazon.awscdk.services.appstream.CfnEntitlementProps |
Python | aws_cdk.aws_appstream.CfnEntitlementProps |
TypeScript | @aws-cdk/aws-appstream » CfnEntitlementProps |
Properties for defining a CfnEntitlement.
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 cfnEntitlementProps: appstream.CfnEntitlementProps = {
appVisibility: 'appVisibility',
attributes: [{
name: 'name',
value: 'value',
}],
name: 'name',
stackName: 'stackName',
// the properties below are optional
description: 'description',
};
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. |
| name | string | The name of the entitlement. |
| stack | string | The name of the stack. |
| description? | string | The description of the entitlement. |
appVisibility
Type:
string
Specifies whether to entitle all apps or only selected apps.
attributes
Type:
IResolvable | IResolvable | Attribute[]
The attributes of the entitlement.
name
Type:
string
The name of the entitlement.
stackName
Type:
string
The name of the stack.
description?
Type:
string
(optional)
The description of the entitlement.

.NET
Java
Python
TypeScript