Class: Aws::BedrockAgentCoreControl::Types::Descriptors
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::Descriptors
- Defined in:
- gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb
Overview
Contains descriptor-type-specific configurations for a registry
record. Only the descriptor matching the record's descriptorType
should be populated.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#a2a ⇒ Types::A2aDescriptor
The Agent-to-Agent (A2A) protocol descriptor configuration.
-
#agent_skills ⇒ Types::AgentSkillsDescriptor
The agent skills descriptor configuration.
-
#custom ⇒ Types::CustomDescriptor
The custom descriptor configuration.
-
#mcp ⇒ Types::McpDescriptor
The Model Context Protocol (MCP) descriptor configuration.
Instance Attribute Details
#a2a ⇒ Types::A2aDescriptor
The Agent-to-Agent (A2A) protocol descriptor configuration. Use this
when the descriptorType is A2A.
5331 5332 5333 5334 5335 5336 5337 5338 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 5331 class Descriptors < Struct.new( :mcp, :a2a, :custom, :agent_skills) SENSITIVE = [] include Aws::Structure end |
#agent_skills ⇒ Types::AgentSkillsDescriptor
The agent skills descriptor configuration. Use this when the
descriptorType is AGENT_SKILLS.
5331 5332 5333 5334 5335 5336 5337 5338 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 5331 class Descriptors < Struct.new( :mcp, :a2a, :custom, :agent_skills) SENSITIVE = [] include Aws::Structure end |
#custom ⇒ Types::CustomDescriptor
The custom descriptor configuration. Use this when the
descriptorType is CUSTOM.
5331 5332 5333 5334 5335 5336 5337 5338 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 5331 class Descriptors < Struct.new( :mcp, :a2a, :custom, :agent_skills) SENSITIVE = [] include Aws::Structure end |
#mcp ⇒ Types::McpDescriptor
The Model Context Protocol (MCP) descriptor configuration. Use this
when the descriptorType is MCP.
5331 5332 5333 5334 5335 5336 5337 5338 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 5331 class Descriptors < Struct.new( :mcp, :a2a, :custom, :agent_skills) SENSITIVE = [] include Aws::Structure end |