Class: Aws::BedrockAgentCore::Types::Branch

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

Overview

Contains information about a branch in a memory store. Branches allow for organizing events into different conversation threads or paths.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the branch.

Returns:

  • (String)


97
98
99
100
101
102
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 97

class Branch < Struct.new(
  :root_event_id,
  :name)
  SENSITIVE = []
  include Aws::Structure
end

#root_event_idString

The identifier of the root event for this branch.

Returns:

  • (String)


97
98
99
100
101
102
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 97

class Branch < Struct.new(
  :root_event_id,
  :name)
  SENSITIVE = []
  include Aws::Structure
end