Class: Aws::Bedrock::Types::AutomatedReasoningPolicyBuildStepMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::AutomatedReasoningPolicyBuildStepMessage
- 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
-
#message ⇒ String
The content of the message, describing what occurred during the build step.
-
#message_type ⇒ String
The type of message (e.g., INFO, WARNING, ERROR) indicating its severity and purpose.
Instance Attribute Details
#message ⇒ String
The content of the message, describing what occurred during the build step.
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_type ⇒ String
The type of message (e.g., INFO, WARNING, ERROR) indicating its severity and purpose.
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 |