Interface DataTransfer.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DataTransfer.Builder,DataTransfer>,SdkBuilder<DataTransfer.Builder,DataTransfer>,SdkPojo
- Enclosing class:
- DataTransfer
public static interface DataTransfer.Builder extends SdkPojo, CopyableBuilder<DataTransfer.Builder,DataTransfer>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DataTransfer.BuilderbytesTransferred(Long bytesTransferred)The number of bytes transferred between a Snow device and Amazon S3.DataTransfer.BuilderobjectsTransferred(Long objectsTransferred)The number of objects transferred between a Snow device and Amazon S3.DataTransfer.BuildertotalBytes(Long totalBytes)The total bytes of data for a transfer between a Snow device and Amazon S3.DataTransfer.BuildertotalObjects(Long totalObjects)The total number of objects for a transfer between a Snow device and Amazon S3.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
bytesTransferred
DataTransfer.Builder bytesTransferred(Long bytesTransferred)
The number of bytes transferred between a Snow device and Amazon S3.
- Parameters:
bytesTransferred- The number of bytes transferred between a Snow device and Amazon S3.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
objectsTransferred
DataTransfer.Builder objectsTransferred(Long objectsTransferred)
The number of objects transferred between a Snow device and Amazon S3.
- Parameters:
objectsTransferred- The number of objects transferred between a Snow device and Amazon S3.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
totalBytes
DataTransfer.Builder totalBytes(Long totalBytes)
The total bytes of data for a transfer between a Snow device and Amazon S3. This value is set to 0 (zero) until all the keys that will be transferred have been listed.
- Parameters:
totalBytes- The total bytes of data for a transfer between a Snow device and Amazon S3. This value is set to 0 (zero) until all the keys that will be transferred have been listed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
totalObjects
DataTransfer.Builder totalObjects(Long totalObjects)
The total number of objects for a transfer between a Snow device and Amazon S3. This value is set to 0 (zero) until all the keys that will be transferred have been listed.
- Parameters:
totalObjects- The total number of objects for a transfer between a Snow device and Amazon S3. This value is set to 0 (zero) until all the keys that will be transferred have been listed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-