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¶
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
nextToken
value returned from a previous paginateddescribe_repository_creation_templates
request wheremaxResults
was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned thenextToken
value. This value isnull
when 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.
maxResults
The maximum number of repository results returned by
DescribeRepositoryCreationTemplatesRequest
in paginated output. When this parameter is used,DescribeRepositoryCreationTemplatesRequest
only returnsmaxResults
results in a single page along with anextToken
response element. The remaining results of the initial request can be seen by sending anotherDescribeRepositoryCreationTemplatesRequest
request with the returnednextToken
value. This value can be between 1 and 1000. If this parameter is not used, thenDescribeRepositoryCreationTemplatesRequest
returns up to 100 results and anextToken
value, 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
)