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 and COMPUTER_INPUT. If you enable COMPUTER_INPUT, you must also enable COMPUTER_VISION.

Returns:

  • (String)


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

#permissionString

Whether the agent action is enabled or disabled.

Returns:

  • (String)


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