Class: Aws::Bedrock::Types::AutomatedReasoningPolicyBuildStepMessage

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

Overview

Represents a message generated during a build step, providing information about what happened or any issues encountered.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#messageString

The content of the message, describing what occurred during the build step.

Returns:

  • (String)


945
946
947
948
949
950
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 945

class AutomatedReasoningPolicyBuildStepMessage < Struct.new(
  :message,
  :message_type)
  SENSITIVE = []
  include Aws::Structure
end

#message_typeString

The type of message (e.g., INFO, WARNING, ERROR) indicating its severity and purpose.

Returns:

  • (String)


945
946
947
948
949
950
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 945

class AutomatedReasoningPolicyBuildStepMessage < Struct.new(
  :message,
  :message_type)
  SENSITIVE = []
  include Aws::Structure
end