CopyableBuilder<Repository.Builder,Repository>
, SdkBuilder<Repository.Builder,Repository>
public static interface Repository.Builder extends CopyableBuilder<Repository.Builder,Repository>
Modifier and Type | Method | Description |
---|---|---|
Repository.Builder |
createdAt(Date createdAt) |
The date and time, in JavaScript date/time 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
apply, 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, the AWS account ID of the repository owner, the
repository namespace, and then the 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, the AWS account ID of
the repository owner, the repository namespace, and then the 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
and pull
operations.
repositoryUri
- The URI for the repository. You can use this URI for Docker push
and pull
operations.Repository.Builder createdAt(Date createdAt)
The date and time, in JavaScript date/time format, when the repository was created.
createdAt
- The date and time, in JavaScript date/time format, when the repository was created.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.