Class: Aws::ECR::Types::DeleteRepositoryRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECR::Types::DeleteRepositoryRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ecr/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#force ⇒ Boolean
If true, deleting the repository force deletes the contents of the repository.
-
#registry_id ⇒ String
The Amazon Web Services account ID associated with the registry that contains the repository to delete.
-
#repository_name ⇒ String
The name of the repository to delete.
Instance Attribute Details
#force ⇒ Boolean
If true, deleting the repository force deletes the contents of the repository. If false, the repository must be empty before attempting to delete it.
950 951 952 953 954 955 956 |
# File 'lib/aws-sdk-ecr/types.rb', line 950 class DeleteRepositoryRequest < Struct.new( :registry_id, :repository_name, :force) SENSITIVE = [] include Aws::Structure end |
#registry_id ⇒ String
The Amazon Web Services account ID associated with the registry that contains the repository to delete. If you do not specify a registry, the default registry is assumed.
950 951 952 953 954 955 956 |
# File 'lib/aws-sdk-ecr/types.rb', line 950 class DeleteRepositoryRequest < Struct.new( :registry_id, :repository_name, :force) SENSITIVE = [] include Aws::Structure end |
#repository_name ⇒ String
The name of the repository to delete.
950 951 952 953 954 955 956 |
# File 'lib/aws-sdk-ecr/types.rb', line 950 class DeleteRepositoryRequest < Struct.new( :registry_id, :repository_name, :force) SENSITIVE = [] include Aws::Structure end |