Delete Repository Creation Template
ecr_delete_repository_creation_template | R Documentation |
Deletes a repository creation template¶
Description¶
Deletes a repository creation template.
Usage¶
Arguments¶
prefix
[required] The repository namespace prefix associated with the repository creation template.
Value¶
A list with the following syntax:
list(
registryId = "string",
repositoryCreationTemplate = list(
prefix = "string",
description = "string",
encryptionConfiguration = list(
encryptionType = "AES256"|"KMS",
kmsKey = "string"
),
resourceTags = list(
list(
Key = "string",
Value = "string"
)
),
imageTagMutability = "MUTABLE"|"IMMUTABLE",
repositoryPolicy = "string",
lifecyclePolicy = "string",
appliedFor = list(
"REPLICATION"|"PULL_THROUGH_CACHE"
),
customRoleArn = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
updatedAt = as.POSIXct(
"2015-01-01"
)
)
)