Class: Aws::ECR::Types::DeleteRepositoryRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ecr/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#forceBoolean

If true, deleting the repository force deletes the contents of the repository. If false, the repository must be empty before attempting to delete it.

Returns:

  • (Boolean)


772
773
774
775
776
777
778
# File 'lib/aws-sdk-ecr/types.rb', line 772

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

#registry_idString

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.

Returns:

  • (String)


772
773
774
775
776
777
778
# File 'lib/aws-sdk-ecr/types.rb', line 772

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)


772
773
774
775
776
777
778
# File 'lib/aws-sdk-ecr/types.rb', line 772

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