Class: Aws::AppStream::Types::UserSetting
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppStream::Types::UserSetting
- Defined in:
- gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb
Overview
Note:
When making an API call, you may pass UserSetting data as a hash:
{
action: "CLIPBOARD_COPY_FROM_LOCAL_DEVICE", # required, accepts CLIPBOARD_COPY_FROM_LOCAL_DEVICE, CLIPBOARD_COPY_TO_LOCAL_DEVICE, FILE_UPLOAD, FILE_DOWNLOAD, PRINTING_TO_LOCAL_DEVICE, DOMAIN_PASSWORD_SIGNIN, DOMAIN_SMART_CARD_SIGNIN
permission: "ENABLED", # required, accepts ENABLED, DISABLED
}
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.
-
#permission ⇒ String
Indicates whether the action is enabled or disabled.
Instance Attribute Details
#action ⇒ String
The action that is enabled or disabled.
4226 4227 4228 4229 4230 4231 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 4226 class UserSetting < Struct.new( :action, :permission) SENSITIVE = [] include Aws::Structure end |
#permission ⇒ String
Indicates whether the action is enabled or disabled.
4226 4227 4228 4229 4230 4231 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 4226 class UserSetting < Struct.new( :action, :permission) SENSITIVE = [] include Aws::Structure end |