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¶
Arguments¶
prefixesThe repository namespace prefixes associated with the repository creation templates to describe. If this value is not specified, all repository creation templates are returned.
nextTokenThe
nextTokenvalue returned from a previous paginateddescribe_repository_creation_templatesrequest wheremaxResultswas used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned thenextTokenvalue. This value isnullwhen there are no more results to return.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.
maxResultsThe maximum number of repository results returned by
DescribeRepositoryCreationTemplatesRequestin paginated output. When this parameter is used,DescribeRepositoryCreationTemplatesRequestonly returnsmaxResultsresults in a single page along with anextTokenresponse element. The remaining results of the initial request can be seen by sending anotherDescribeRepositoryCreationTemplatesRequestrequest with the returnednextTokenvalue. This value can be between 1 and 1000. If this parameter is not used, thenDescribeRepositoryCreationTemplatesRequestreturns up to 100 results and anextTokenvalue, if applicable.
Value¶
A list with the following syntax:
list(
registryId = "string",
repositoryCreationTemplates = list(
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"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$describe_repository_creation_templates(
prefixes = list(
"string"
),
nextToken = "string",
maxResults = 123
)