Interface BatchDeleteImageRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<BatchDeleteImageRequest.Builder,BatchDeleteImageRequest>,EcrPublicRequest.Builder,SdkBuilder<BatchDeleteImageRequest.Builder,BatchDeleteImageRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- BatchDeleteImageRequest
public static interface BatchDeleteImageRequest.Builder extends EcrPublicRequest.Builder, SdkPojo, CopyableBuilder<BatchDeleteImageRequest.Builder,BatchDeleteImageRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchDeleteImageRequest.BuilderimageIds(Collection<ImageIdentifier> imageIds)A list of image ID references that correspond to images to delete.BatchDeleteImageRequest.BuilderimageIds(Consumer<ImageIdentifier.Builder>... imageIds)A list of image ID references that correspond to images to delete.BatchDeleteImageRequest.BuilderimageIds(ImageIdentifier... imageIds)A list of image ID references that correspond to images to delete.BatchDeleteImageRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)BatchDeleteImageRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)BatchDeleteImageRequest.BuilderregistryId(String registryId)The Amazon Web Services account ID, or registry alias, that's associated with the registry that contains the image to delete.BatchDeleteImageRequest.BuilderrepositoryName(String repositoryName)The repository in a public registry that contains the image to delete.-
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
BatchDeleteImageRequest.Builder registryId(String registryId)
The Amazon Web Services account ID, or registry alias, that's associated with the registry that contains the image to delete. If you do not specify a registry, the default public registry is assumed.
- Parameters:
registryId- The Amazon Web Services account ID, or registry alias, that's associated with the registry that contains the image to delete. 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
BatchDeleteImageRequest.Builder repositoryName(String repositoryName)
The repository in a public registry that contains the image to delete.
- Parameters:
repositoryName- The repository in a public registry that contains the image to delete.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
imageIds
BatchDeleteImageRequest.Builder imageIds(Collection<ImageIdentifier> imageIds)
A list of image ID references that correspond to images to delete. The format of the
imageIdsreference isimageTag=tagorimageDigest=digest.- Parameters:
imageIds- A list of image ID references that correspond to images to delete. The format of theimageIdsreference isimageTag=tagorimageDigest=digest.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
imageIds
BatchDeleteImageRequest.Builder imageIds(ImageIdentifier... imageIds)
A list of image ID references that correspond to images to delete. The format of the
imageIdsreference isimageTag=tagorimageDigest=digest.- Parameters:
imageIds- A list of image ID references that correspond to images to delete. The format of theimageIdsreference isimageTag=tagorimageDigest=digest.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
imageIds
BatchDeleteImageRequest.Builder imageIds(Consumer<ImageIdentifier.Builder>... imageIds)
A list of image ID references that correspond to images to delete. The format of the
This is a convenience method that creates an instance of theimageIdsreference isimageTag=tagorimageDigest=digest.ImageIdentifier.Builderavoiding the need to create one manually viaImageIdentifier.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#imageIds(List.) - Parameters:
imageIds- a consumer that will call methods onImageIdentifier.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#imageIds(java.util.Collection)
-
overrideConfiguration
BatchDeleteImageRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
BatchDeleteImageRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-