Class: Aws::ECRPublic::Types::DeleteRepositoryRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECRPublic::Types::DeleteRepositoryRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ecrpublic/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#force ⇒ Boolean
The force option can be used to delete a repository that contains images.
-
#registry_id ⇒ String
The Amazon Web Services account ID that’s associated with the public registry that contains the repository to delete.
-
#repository_name ⇒ String
The name of the repository to delete.
Instance Attribute Details
#force ⇒ Boolean
The force option can be used to delete a repository that contains images. If the force option is not used, the repository must be empty prior to deletion.
294 295 296 297 298 299 300 |
# File 'lib/aws-sdk-ecrpublic/types.rb', line 294 class DeleteRepositoryRequest < Struct.new( :registry_id, :repository_name, :force) SENSITIVE = [] include Aws::Structure end |
#registry_id ⇒ String
The Amazon Web Services account ID that’s associated with the public registry that contains the repository to delete. If you do not specify a registry, the default public registry is assumed.
294 295 296 297 298 299 300 |
# File 'lib/aws-sdk-ecrpublic/types.rb', line 294 class DeleteRepositoryRequest < Struct.new( :registry_id, :repository_name, :force) SENSITIVE = [] include Aws::Structure end |
#repository_name ⇒ String
The name of the repository to delete.
294 295 296 297 298 299 300 |
# File 'lib/aws-sdk-ecrpublic/types.rb', line 294 class DeleteRepositoryRequest < Struct.new( :registry_id, :repository_name, :force) SENSITIVE = [] include Aws::Structure end |