Create Repository
ecrpublic_create_repository | R Documentation |
Creates a repository in a public registry¶
Description¶
Creates a repository in a public registry. For more information, see Amazon ECR repositories in the Amazon Elastic Container Registry User Guide.
Usage¶
ecrpublic_create_repository(repositoryName, catalogData, tags)
Arguments¶
repositoryName |
[required] The name to use for the repository. This appears
publicly in the Amazon ECR Public Gallery. The repository name can be
specified on its own (for example |
catalogData |
The details about the repository that are publicly visible in the Amazon ECR Public Gallery. |
tags |
The metadata that you apply to each repository to help categorize and organize your repositories. Each tag consists of a key and an optional value. You define both of them. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters. |
Value¶
A list with the following syntax:
list(
repository = list(
repositoryArn = "string",
registryId = "string",
repositoryName = "string",
repositoryUri = "string",
createdAt = as.POSIXct(
"2015-01-01"
)
),
catalogData = list(
description = "string",
architectures = list(
"string"
),
operatingSystems = list(
"string"
),
logoUrl = "string",
aboutText = "string",
usageText = "string",
marketplaceCertified = TRUE|FALSE
)
)
Request syntax¶
svc$create_repository(
repositoryName = "string",
catalogData = list(
description = "string",
architectures = list(
"string"
),
operatingSystems = list(
"string"
),
logoImageBlob = raw,
aboutText = "string",
usageText = "string"
),
tags = list(
list(
Key = "string",
Value = "string"
)
)
)