public static interface Registry.Builder extends SdkPojo, CopyableBuilder<Registry.Builder,Registry>
| Modifier and Type | Method and Description |
|---|---|
Registry.Builder |
aliases(Collection<RegistryAlias> aliases)
An array of objects representing the aliases for a public registry.
|
Registry.Builder |
aliases(Consumer<RegistryAlias.Builder>... aliases)
An array of objects representing the aliases for a public registry.
|
Registry.Builder |
aliases(RegistryAlias... aliases)
An array of objects representing the aliases for a public registry.
|
Registry.Builder |
registryArn(String registryArn)
The Amazon Resource Name (ARN) of the public registry.
|
Registry.Builder |
registryId(String registryId)
The AWS account ID associated with the registry.
|
Registry.Builder |
registryUri(String registryUri)
The URI of a public registry.
|
Registry.Builder |
verified(Boolean verified)
Whether the account is verified.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildRegistry.Builder registryId(String registryId)
The AWS account ID associated with the registry. If you do not specify a registry, the default public registry is assumed.
registryId - The AWS account ID associated with the registry. If you do not specify a registry, the default public
registry is assumed.Registry.Builder registryArn(String registryArn)
The Amazon Resource Name (ARN) of the public registry.
registryArn - The Amazon Resource Name (ARN) of the public registry.Registry.Builder registryUri(String registryUri)
The URI of a public registry. The URI contains a universal prefix and the registry alias.
registryUri - The URI of a public registry. The URI contains a universal prefix and the registry alias.Registry.Builder verified(Boolean verified)
Whether the account is verified. This indicates whether the account is an AWS Marketplace vendor. If an account is verified, each public repository will received a verified account badge on the Amazon ECR Public Gallery.
verified - Whether the account is verified. This indicates whether the account is an AWS Marketplace vendor. If
an account is verified, each public repository will received a verified account badge on the Amazon
ECR Public Gallery.Registry.Builder aliases(Collection<RegistryAlias> aliases)
An array of objects representing the aliases for a public registry.
aliases - An array of objects representing the aliases for a public registry.Registry.Builder aliases(RegistryAlias... aliases)
An array of objects representing the aliases for a public registry.
aliases - An array of objects representing the aliases for a public registry.Registry.Builder aliases(Consumer<RegistryAlias.Builder>... aliases)
An array of objects representing the aliases for a public registry.
This is a convenience that creates an instance of theList.Builder avoiding the need
to create one manually via List#builder() .
When the Consumer completes, List.Builder#build() is called immediately and
its result is passed to #aliases(List) .aliases - a consumer that will call methods on List.Builder #aliases(List) Copyright © 2021. All rights reserved.