Class: Aws::AppStream::Types::UserSetting
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppStream::Types::UserSetting
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appstream/types.rb
Overview
Describes an action and whether the action is enabled or disabled for users during their streaming sessions.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#action ⇒ String
The action that is enabled or disabled.
-
#maximum_length ⇒ Integer
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.
Instance Attribute Details
#action ⇒ String
The action that is enabled or disabled.
5939 5940 5941 5942 5943 5944 5945 |
# File 'lib/aws-sdk-appstream/types.rb', line 5939 class UserSetting < Struct.new( :action, :permission, :maximum_length) SENSITIVE = [] include Aws::Structure end |
#maximum_length ⇒ Integer
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).
5939 5940 5941 5942 5943 5944 5945 |
# File 'lib/aws-sdk-appstream/types.rb', line 5939 class UserSetting < Struct.new( :action, :permission, :maximum_length) SENSITIVE = [] include Aws::Structure end |
#permission ⇒ String
Indicates whether the action is enabled or disabled.
5939 5940 5941 5942 5943 5944 5945 |
# File 'lib/aws-sdk-appstream/types.rb', line 5939 class UserSetting < Struct.new( :action, :permission, :maximum_length) SENSITIVE = [] include Aws::Structure end |