Delete Repository
ecrpublic_delete_repository | R Documentation |
Deletes a repository in a public registry¶
Description¶
Deletes a repository in a public registry. If the repository contains
images, you must either manually delete all images in the repository or
use the force
option. This option deletes all images on your behalf
before deleting the repository.
Usage¶
Arguments¶
registryId
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.
repositoryName
[required] The name of the repository to delete.
force
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.
Value¶
A list with the following syntax:
list(
repository = list(
repositoryArn = "string",
registryId = "string",
repositoryName = "string",
repositoryUri = "string",
createdAt = as.POSIXct(
"2015-01-01"
)
)
)