Class: Aws::Bedrock::Types::AutomatedReasoningPolicyBuildLogEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::AutomatedReasoningPolicyBuildLogEntry
- Defined in:
- gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb
Overview
Represents a single entry in the policy build log, containing information about a specific step or event in the build process.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#annotation ⇒ Types::AutomatedReasoningPolicyAnnotation
The annotation or operation that was being processed when this log entry was created.
-
#build_steps ⇒ Array<Types::AutomatedReasoningPolicyBuildStep>
Detailed information about the specific build steps that were executed, including any sub-operations or transformations.
-
#status ⇒ String
The status of the build step (e.g., SUCCESS, FAILED, IN_PROGRESS).
Instance Attribute Details
#annotation ⇒ Types::AutomatedReasoningPolicyAnnotation
The annotation or operation that was being processed when this log entry was created.
827 828 829 830 831 832 833 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 827 class AutomatedReasoningPolicyBuildLogEntry < Struct.new( :annotation, :status, :build_steps) SENSITIVE = [] include Aws::Structure end |
#build_steps ⇒ Array<Types::AutomatedReasoningPolicyBuildStep>
Detailed information about the specific build steps that were executed, including any sub-operations or transformations.
827 828 829 830 831 832 833 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 827 class AutomatedReasoningPolicyBuildLogEntry < Struct.new( :annotation, :status, :build_steps) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the build step (e.g., SUCCESS, FAILED, IN_PROGRESS).
827 828 829 830 831 832 833 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 827 class AutomatedReasoningPolicyBuildLogEntry < Struct.new( :annotation, :status, :build_steps) SENSITIVE = [] include Aws::Structure end |