Interface PutRepositoryCatalogDataRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<PutRepositoryCatalogDataRequest.Builder,PutRepositoryCatalogDataRequest>,EcrPublicRequest.Builder,SdkBuilder<PutRepositoryCatalogDataRequest.Builder,PutRepositoryCatalogDataRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- PutRepositoryCatalogDataRequest
public static interface PutRepositoryCatalogDataRequest.Builder extends EcrPublicRequest.Builder, SdkPojo, CopyableBuilder<PutRepositoryCatalogDataRequest.Builder,PutRepositoryCatalogDataRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default PutRepositoryCatalogDataRequest.BuildercatalogData(Consumer<RepositoryCatalogDataInput.Builder> catalogData)An object containing the catalog data for a repository.PutRepositoryCatalogDataRequest.BuildercatalogData(RepositoryCatalogDataInput catalogData)An object containing the catalog data for a repository.PutRepositoryCatalogDataRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)PutRepositoryCatalogDataRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)PutRepositoryCatalogDataRequest.BuilderregistryId(String registryId)The Amazon Web Services account ID that's associated with the public registry the repository is in.PutRepositoryCatalogDataRequest.BuilderrepositoryName(String repositoryName)The name of the repository to create or update the catalog data for.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.ecrpublic.model.EcrPublicRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
registryId
PutRepositoryCatalogDataRequest.Builder registryId(String registryId)
The Amazon Web Services account ID that's associated with the public registry the repository is in. If you do not specify a registry, the default public registry is assumed.
- Parameters:
registryId- The Amazon Web Services account ID that's associated with the public registry the repository is in. If you do not specify a registry, the default public registry is assumed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
repositoryName
PutRepositoryCatalogDataRequest.Builder repositoryName(String repositoryName)
The name of the repository to create or update the catalog data for.
- Parameters:
repositoryName- The name of the repository to create or update the catalog data for.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
catalogData
PutRepositoryCatalogDataRequest.Builder catalogData(RepositoryCatalogDataInput catalogData)
An object containing the catalog data for a repository. This data is publicly visible in the Amazon ECR Public Gallery.
- Parameters:
catalogData- An object containing the catalog data for a repository. This data is publicly visible in the Amazon ECR Public Gallery.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
catalogData
default PutRepositoryCatalogDataRequest.Builder catalogData(Consumer<RepositoryCatalogDataInput.Builder> catalogData)
An object containing the catalog data for a repository. This data is publicly visible in the Amazon ECR Public Gallery.
This is a convenience method that creates an instance of theRepositoryCatalogDataInput.Builderavoiding the need to create one manually viaRepositoryCatalogDataInput.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocatalogData(RepositoryCatalogDataInput).- Parameters:
catalogData- a consumer that will call methods onRepositoryCatalogDataInput.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
catalogData(RepositoryCatalogDataInput)
-
overrideConfiguration
PutRepositoryCatalogDataRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
PutRepositoryCatalogDataRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-