Class: Aws::S3Control::Types::AsyncErrorDetails
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::S3Control::Types::AsyncErrorDetails
 
- Defined in:
- gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb
Overview
Error details for the failed asynchronous operation.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A string that uniquely identifies the error condition. 
- 
  
    
      #message  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A generic description of the error condition in English. 
- 
  
    
      #request_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID of the request associated with the error. 
- 
  
    
      #resource  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The identifier of the resource associated with the error. 
Instance Attribute Details
#code ⇒ String
A string that uniquely identifies the error condition.
| 326 327 328 329 330 331 332 333 | # File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 326 class AsyncErrorDetails < Struct.new( :code, :message, :resource, :request_id) SENSITIVE = [] include Aws::Structure end | 
#message ⇒ String
A generic description of the error condition in English.
| 326 327 328 329 330 331 332 333 | # File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 326 class AsyncErrorDetails < Struct.new( :code, :message, :resource, :request_id) SENSITIVE = [] include Aws::Structure end | 
#request_id ⇒ String
The ID of the request associated with the error.
| 326 327 328 329 330 331 332 333 | # File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 326 class AsyncErrorDetails < Struct.new( :code, :message, :resource, :request_id) SENSITIVE = [] include Aws::Structure end | 
#resource ⇒ String
The identifier of the resource associated with the error.
| 326 327 328 329 330 331 332 333 | # File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 326 class AsyncErrorDetails < Struct.new( :code, :message, :resource, :request_id) SENSITIVE = [] include Aws::Structure end |