Class: Aws::Connect::Types::AIAgent

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb

Overview

Information about an AI agent that a security profile allows access to for Agent-to-Agent authorization.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#arnString

The Amazon Resource Name (ARN) of the AI agent.

Returns:

  • (String)


26
27
28
29
30
31
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 26

class AIAgent < Struct.new(
  :arn,
  :type)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

The type of the AI agent. The valid value is THIRD_PARTY.

Returns:

  • (String)


26
27
28
29
30
31
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 26

class AIAgent < Struct.new(
  :arn,
  :type)
  SENSITIVE = []
  include Aws::Structure
end