interface UserSettingProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.AppStream.CfnStack.UserSettingProperty | 
  Java | software.amazon.awscdk.services.appstream.CfnStack.UserSettingProperty | 
  Python | aws_cdk.aws_appstream.CfnStack.UserSettingProperty | 
  TypeScript  | @aws-cdk/aws-appstream » CfnStack » UserSettingProperty | 
Specifies an action and whether the action is enabled or disabled for users during their streaming sessions.
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 userSettingProperty: appstream.CfnStack.UserSettingProperty = {
  action: 'action',
  permission: 'permission',
};
Properties
| Name | Type | Description | 
|---|---|---|
| action | string | The action that is enabled or disabled. | 
| permission | string | Indicates whether the action is enabled or disabled. | 
action
Type:
string
The action that is enabled or disabled.
permission
Type:
string
Indicates whether the action is enabled or disabled.

 .NET
 Java
 Python
 TypeScript