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, COMPUTER_INPUT, and FORWARD_MCP_TOOLS. If you enable COMPUTER_INPUT, you must also enable COMPUTER_VISION.
189 190 191 192 193 194 |
# File 'lib/aws-sdk-appstream/types.rb', line 189 class AgentAccessSetting < Struct.new( :agent_action, :permission) SENSITIVE = [] include Aws::Structure end |
#permission ⇒ String
Whether the agent action is enabled or disabled.
189 190 191 192 193 194 |
# File 'lib/aws-sdk-appstream/types.rb', line 189 class AgentAccessSetting < Struct.new( :agent_action, :permission) SENSITIVE = [] include Aws::Structure end |