Class: Aws::BedrockAgentRuntime::Types::FlowFailureEvent
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::BedrockAgentRuntime::Types::FlowFailureEvent
 
- Defined in:
- gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb
Overview
Contains information about a failure that occurred at the flow level during a flow execution.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #error_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The error code that identifies the type of failure that occurred. 
- 
  
    
      #error_message  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A descriptive message that provides details about the failure. 
- 
  
    
      #timestamp  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The timestamp when the failure occurred. 
Instance Attribute Details
#error_code ⇒ String
The error code that identifies the type of failure that occurred.
| 1915 1916 1917 1918 1919 1920 1921 | # File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 1915 class FlowFailureEvent < Struct.new( :timestamp, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end | 
#error_message ⇒ String
A descriptive message that provides details about the failure.
| 1915 1916 1917 1918 1919 1920 1921 | # File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 1915 class FlowFailureEvent < Struct.new( :timestamp, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end | 
#timestamp ⇒ Time
The timestamp when the failure occurred.
| 1915 1916 1917 1918 1919 1920 1921 | # File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 1915 class FlowFailureEvent < Struct.new( :timestamp, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |