Class: Aws::Firehose::Types::FailureDescription
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Firehose::Types::FailureDescription
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-firehose/types.rb
 
Overview
Provides details in case one of the following operations fails due to an error related to KMS: CreateDeliveryStream, DeleteDeliveryStream, StartDeliveryStreamEncryption, StopDeliveryStreamEncryption.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #details  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A message providing details about the error that caused the failure.
 - 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of error that caused the failure.
 
Instance Attribute Details
#details ⇒ String
A message providing details about the error that caused the failure.
      2443 2444 2445 2446 2447 2448  | 
    
      # File 'lib/aws-sdk-firehose/types.rb', line 2443 class FailureDescription < Struct.new( :type, :details) SENSITIVE = [] include Aws::Structure end  | 
  
#type ⇒ String
The type of error that caused the failure.
      2443 2444 2445 2446 2447 2448  | 
    
      # File 'lib/aws-sdk-firehose/types.rb', line 2443 class FailureDescription < Struct.new( :type, :details) SENSITIVE = [] include Aws::Structure end  |