interface UserSettingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppStream.Mixins.CfnStackPropsMixin.UserSettingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappstream/mixins#CfnStackPropsMixin_UserSettingProperty |
Java | software.amazon.awscdk.mixins.preview.services.appstream.mixins.CfnStackPropsMixin.UserSettingProperty |
Python | aws_cdk.mixins_preview.aws_appstream.mixins.CfnStackPropsMixin.UserSettingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appstream » mixins » CfnStackPropsMixin » 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 { mixins as appstream_mixins } from '@aws-cdk/mixins-preview/aws-appstream';
const userSettingProperty: appstream_mixins.CfnStackPropsMixin.UserSettingProperty = {
action: 'action',
maximumLength: 123,
permission: 'permission',
};
Properties
| Name | Type | Description |
|---|---|---|
| action? | string | The action that is enabled or disabled. |
| maximum | number | Specifies the number of characters that can be copied by end users from the local device to the remote session, and to the local device from the remote session. |
| permission? | string | Indicates whether the action is enabled or disabled. |
action?
Type:
string
(optional)
The action that is enabled or disabled.
maximumLength?
Type:
number
(optional)
Specifies the number of characters that can be copied by end users from the local device to the remote session, and to the local device from the remote session.
This can be specified only for the CLIPBOARD_COPY_FROM_LOCAL_DEVICE and CLIPBOARD_COPY_TO_LOCAL_DEVICE actions.
This defaults to 20,971,520 (20 MB) when unspecified and the permission is ENABLED . This can't be specified when the permission is DISABLED .
The value can be between 1 and 20,971,520 (20 MB).
permission?
Type:
string
(optional)
Indicates whether the action is enabled or disabled.

.NET
Go
Java
Python
TypeScript