Interface QueryStatus.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<QueryStatus.Builder,
,QueryStatus> SdkBuilder<QueryStatus.Builder,
,QueryStatus> SdkPojo
- Enclosing class:
QueryStatus
public static interface QueryStatus.Builder
extends SdkPojo, CopyableBuilder<QueryStatus.Builder,QueryStatus>
-
Method Summary
Modifier and TypeMethodDescriptioncumulativeBytesMetered
(Long cumulativeBytesMetered) The amount of data scanned by the query in bytes that you will be charged for.cumulativeBytesScanned
(Long cumulativeBytesScanned) The amount of data scanned by the query in bytes.progressPercentage
(Double progressPercentage) The progress of the query, expressed as a percentage.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 Details
-
progressPercentage
The progress of the query, expressed as a percentage.
- Parameters:
progressPercentage
- The progress of the query, expressed as a percentage.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
cumulativeBytesScanned
The amount of data scanned by the query in bytes. This is a cumulative sum and represents the total amount of bytes scanned since the query was started.
- Parameters:
cumulativeBytesScanned
- The amount of data scanned by the query in bytes. This is a cumulative sum and represents the total amount of bytes scanned since the query was started.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
cumulativeBytesMetered
The amount of data scanned by the query in bytes that you will be charged for. This is a cumulative sum and represents the total amount of data that you will be charged for since the query was started. The charge is applied only once and is either applied when the query completes running or when the query is cancelled.
- Parameters:
cumulativeBytesMetered
- The amount of data scanned by the query in bytes that you will be charged for. This is a cumulative sum and represents the total amount of data that you will be charged for since the query was started. The charge is applied only once and is either applied when the query completes running or when the query is cancelled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-