Class: Aws::ECRPublic::Types::DeleteRepositoryRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-ecrpublic/lib/aws-sdk-ecrpublic/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#forceBoolean

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.

Returns:

  • (Boolean)


294
295
296
297
298
299
300
# File 'gems/aws-sdk-ecrpublic/lib/aws-sdk-ecrpublic/types.rb', line 294

class DeleteRepositoryRequest < Struct.new(
  :registry_id,
  :repository_name,
  :force)
  SENSITIVE = []
  include Aws::Structure
end

#registry_idString

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.

Returns:

  • (String)


294
295
296
297
298
299
300
# File 'gems/aws-sdk-ecrpublic/lib/aws-sdk-ecrpublic/types.rb', line 294

class DeleteRepositoryRequest < Struct.new(
  :registry_id,
  :repository_name,
  :force)
  SENSITIVE = []
  include Aws::Structure
end

#repository_nameString

The name of the repository to delete.

Returns:

  • (String)


294
295
296
297
298
299
300
# File 'gems/aws-sdk-ecrpublic/lib/aws-sdk-ecrpublic/types.rb', line 294

class DeleteRepositoryRequest < Struct.new(
  :registry_id,
  :repository_name,
  :force)
  SENSITIVE = []
  include Aws::Structure
end