Class: Aws::AppStream::Types::AgentAccessSetting
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppStream::Types::AgentAccessSetting
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appstream/types.rb
Overview
A permission setting for an agent action. Each setting specifies an agent action and whether it is enabled or disabled.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#agent_action ⇒ String
The agent action to configure.
-
#permission ⇒ String
Whether the agent action is enabled or disabled.
Instance Attribute Details
#agent_action ⇒ String
The agent action to configure. Valid values are COMPUTER_VISION and COMPUTER_INPUT. If you enable COMPUTER_INPUT, you must also enable COMPUTER_VISION.
177 178 179 180 181 182 |
# File 'lib/aws-sdk-appstream/types.rb', line 177 class AgentAccessSetting < Struct.new( :agent_action, :permission) SENSITIVE = [] include Aws::Structure end |
#permission ⇒ String
Whether the agent action is enabled or disabled.
177 178 179 180 181 182 |
# File 'lib/aws-sdk-appstream/types.rb', line 177 class AgentAccessSetting < Struct.new( :agent_action, :permission) SENSITIVE = [] include Aws::Structure end |