public static interface Repository.Builder extends CopyableBuilder<Repository.Builder,Repository>
Modifier and Type | Method and Description |
---|---|
Repository.Builder |
createdAt(Instant createdAt)
The date and time, in JavaScript date format, when the repository was created.
|
Repository.Builder |
registryId(String registryId)
The AWS account ID associated with the registry that contains the repository.
|
Repository.Builder |
repositoryArn(String repositoryArn)
The Amazon Resource Name (ARN) that identifies the repository.
|
Repository.Builder |
repositoryName(String repositoryName)
The name of the repository.
|
Repository.Builder |
repositoryUri(String repositoryUri)
The URI for the repository.
|
copy
applyMutation, build
Repository.Builder repositoryArn(String repositoryArn)
The Amazon Resource Name (ARN) that identifies the repository. The ARN contains the arn:aws:ecr
namespace, followed by the region of the repository, AWS account ID of the repository owner, repository
namespace, and repository name. For example, arn:aws:ecr:region:012345678910:repository/test
.
repositoryArn
- The Amazon Resource Name (ARN) that identifies the repository. The ARN contains the
arn:aws:ecr
namespace, followed by the region of the repository, AWS account ID of the
repository owner, repository namespace, and repository name. For example,
arn:aws:ecr:region:012345678910:repository/test
.Repository.Builder registryId(String registryId)
The AWS account ID associated with the registry that contains the repository.
registryId
- The AWS account ID associated with the registry that contains the repository.Repository.Builder repositoryName(String repositoryName)
The name of the repository.
repositoryName
- The name of the repository.Repository.Builder repositoryUri(String repositoryUri)
The URI for the repository. You can use this URI for Docker push
or pull
operations.
repositoryUri
- The URI for the repository. You can use this URI for Docker push
or pull
operations.Repository.Builder createdAt(Instant createdAt)
The date and time, in JavaScript date format, when the repository was created.
createdAt
- The date and time, in JavaScript date format, when the repository was created.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.