Class: Aws::ECR::Types::LayerFailure
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::ECR::Types::LayerFailure
 
 
- Defined in:
 - gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb
 
Overview
An object representing an Amazon ECR image layer failure.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #failure_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The failure code associated with the failure.
 - 
  
    
      #failure_reason  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The reason for the failure.
 - 
  
    
      #layer_digest  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The layer digest associated with the failure.
 
Instance Attribute Details
#failure_code ⇒ String
The failure code associated with the failure.
      2638 2639 2640 2641 2642 2643 2644  | 
    
      # File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 2638 class LayerFailure < Struct.new( :layer_digest, :failure_code, :failure_reason) SENSITIVE = [] include Aws::Structure end  | 
  
#failure_reason ⇒ String
The reason for the failure.
      2638 2639 2640 2641 2642 2643 2644  | 
    
      # File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 2638 class LayerFailure < Struct.new( :layer_digest, :failure_code, :failure_reason) SENSITIVE = [] include Aws::Structure end  | 
  
#layer_digest ⇒ String
The layer digest associated with the failure.
      2638 2639 2640 2641 2642 2643 2644  | 
    
      # File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 2638 class LayerFailure < Struct.new( :layer_digest, :failure_code, :failure_reason) SENSITIVE = [] include Aws::Structure end  |