Describe Repository Creation Templates
ecr_describe_repository_creation_templates | R Documentation |
Returns details about the repository creation templates in a registry¶
Description¶
Returns details about the repository creation templates in a registry.
The prefixes
request parameter can be used to return the details for a
specific repository creation template.
Usage¶
ecr_describe_repository_creation_templates(prefixes, nextToken,
maxResults)
Arguments¶
prefixes |
The repository namespace prefixes associated with the repository creation templates to describe. If this value is not specified, all repository creation templates are returned. |
nextToken |
The This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes. |
maxResults |
The maximum number of repository results returned by
|
Value¶
A list with the following syntax:
list(
registryId = "string",
repositoryCreationTemplates = list(
list(
prefix = "string",
description = "string",
encryptionConfiguration = list(
encryptionType = "AES256"|"KMS"|"KMS_DSSE",
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"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$describe_repository_creation_templates(
prefixes = list(
"string"
),
nextToken = "string",
maxResults = 123
)