Class: Aws::AppStream::Types::AgentAccessSetting

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#agent_actionString

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.

Returns:

  • (String)


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

#permissionString

Whether the agent action is enabled or disabled.

Returns:

  • (String)


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