Interface AddObjectInput.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AddObjectInput.Builder,AddObjectInput>,SdkBuilder<AddObjectInput.Builder,AddObjectInput>,SdkPojo
- Enclosing class:
- AddObjectInput
public static interface AddObjectInput.Builder extends SdkPojo, CopyableBuilder<AddObjectInput.Builder,AddObjectInput>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AddObjectInput.BuildereTag(String eTag)The Amazon S3 ETag of the object.AddObjectInput.BuilderpartitionValues(String... partitionValues)A list of partition values for the object.AddObjectInput.BuilderpartitionValues(Collection<String> partitionValues)A list of partition values for the object.AddObjectInput.Buildersize(Long size)The size of the Amazon S3 object in bytes.AddObjectInput.Builderuri(String uri)The Amazon S3 location of the object.-
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
AddObjectInput.Builder uri(String uri)
The Amazon S3 location of the object.
- Parameters:
uri- The Amazon S3 location of the object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eTag
AddObjectInput.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.
-
size
AddObjectInput.Builder size(Long size)
The size of the Amazon S3 object in bytes.
- Parameters:
size- The size of the Amazon S3 object in bytes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
partitionValues
AddObjectInput.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 table.
The supported data types are integer, long, date(yyyy-MM-dd), timestamp(yyyy-MM-dd HH:mm:ssXXX or yyyy-MM-dd HH:mm:ss"), string and decimal.
- Parameters:
partitionValues- A list of partition values for the object. A value must be specified for each partition key associated with the table.The supported data types are integer, long, date(yyyy-MM-dd), timestamp(yyyy-MM-dd HH:mm:ssXXX or yyyy-MM-dd HH:mm:ss"), string and decimal.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
partitionValues
AddObjectInput.Builder partitionValues(String... partitionValues)
A list of partition values for the object. A value must be specified for each partition key associated with the table.
The supported data types are integer, long, date(yyyy-MM-dd), timestamp(yyyy-MM-dd HH:mm:ssXXX or yyyy-MM-dd HH:mm:ss"), string and decimal.
- Parameters:
partitionValues- A list of partition values for the object. A value must be specified for each partition key associated with the table.The supported data types are integer, long, date(yyyy-MM-dd), timestamp(yyyy-MM-dd HH:mm:ssXXX or yyyy-MM-dd HH:mm:ss"), string and decimal.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-