Interface DeleteObjectInput.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DeleteObjectInput.Builder,DeleteObjectInput>,SdkBuilder<DeleteObjectInput.Builder,DeleteObjectInput>,SdkPojo
- Enclosing class:
- DeleteObjectInput
public static interface DeleteObjectInput.Builder extends SdkPojo, CopyableBuilder<DeleteObjectInput.Builder,DeleteObjectInput>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DeleteObjectInput.BuildereTag(String eTag)The Amazon S3 ETag of the object.DeleteObjectInput.BuilderpartitionValues(String... partitionValues)A list of partition values for the object.DeleteObjectInput.BuilderpartitionValues(Collection<String> partitionValues)A list of partition values for the object.DeleteObjectInput.Builderuri(String uri)The Amazon S3 location of the object to delete.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
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
-
uri
DeleteObjectInput.Builder uri(String uri)
The Amazon S3 location of the object to delete.
- Parameters:
uri- The Amazon S3 location of the object to delete.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eTag
DeleteObjectInput.Builder eTag(String eTag)
The Amazon S3 ETag of the object. Returned by
GetTableObjectsfor validation and used to identify changes to the underlying data.- Parameters:
eTag- The Amazon S3 ETag of the object. Returned byGetTableObjectsfor validation and used to identify changes to the underlying data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
partitionValues
DeleteObjectInput.Builder partitionValues(Collection<String> partitionValues)
A list of partition values for the object. A value must be specified for each partition key associated with the governed table.
- Parameters:
partitionValues- A list of partition values for the object. A value must be specified for each partition key associated with the governed table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
partitionValues
DeleteObjectInput.Builder partitionValues(String... partitionValues)
A list of partition values for the object. A value must be specified for each partition key associated with the governed table.
- Parameters:
partitionValues- A list of partition values for the object. A value must be specified for each partition key associated with the governed table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-