Class: Aws::Bedrock::Types::AutomatedReasoningPolicyStatementReference

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

Overview

References a specific atomic statement within a source document, used to link policy elements back to their source material.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#document_idString

The unique identifier of the document containing the referenced statement.

Returns:

  • (String)


2151
2152
2153
2154
2155
2156
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 2151

class AutomatedReasoningPolicyStatementReference < Struct.new(
  :document_id,
  :statement_id)
  SENSITIVE = []
  include Aws::Structure
end

#statement_idString

The unique identifier of the specific atomic statement being referenced.

Returns:

  • (String)


2151
2152
2153
2154
2155
2156
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 2151

class AutomatedReasoningPolicyStatementReference < Struct.new(
  :document_id,
  :statement_id)
  SENSITIVE = []
  include Aws::Structure
end