Class: Aws::ECRPublic::Types::BatchDeleteImageRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::ECRPublic::Types::BatchDeleteImageRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ecrpublic/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #image_ids  ⇒ Array<Types::ImageIdentifier> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of image ID references that correspond to images to delete.
 - 
  
    
      #registry_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Web Services account ID, or registry alias, that’s associated with the registry that contains the image to delete.
 - 
  
    
      #repository_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The repository in a public registry that contains the image to delete.
 
Instance Attribute Details
#image_ids ⇒ Array<Types::ImageIdentifier>
A list of image ID references that correspond to images to delete. The format of the ‘imageIds` reference is `imageTag=tag` or `imageDigest=digest`.
      101 102 103 104 105 106 107  | 
    
      # File 'lib/aws-sdk-ecrpublic/types.rb', line 101 class BatchDeleteImageRequest < Struct.new( :registry_id, :repository_name, :image_ids) SENSITIVE = [] include Aws::Structure end  | 
  
#registry_id ⇒ String
The Amazon Web Services account ID, or registry alias, that’s associated with the registry that contains the image to delete. If you do not specify a registry, the default public registry is assumed.
      101 102 103 104 105 106 107  | 
    
      # File 'lib/aws-sdk-ecrpublic/types.rb', line 101 class BatchDeleteImageRequest < Struct.new( :registry_id, :repository_name, :image_ids) SENSITIVE = [] include Aws::Structure end  | 
  
#repository_name ⇒ String
The repository in a public registry that contains the image to delete.
      101 102 103 104 105 106 107  | 
    
      # File 'lib/aws-sdk-ecrpublic/types.rb', line 101 class BatchDeleteImageRequest < Struct.new( :registry_id, :repository_name, :image_ids) SENSITIVE = [] include Aws::Structure end  |