@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class QueryStatus extends Object implements Serializable, Cloneable, StructuredPojo
Information about the status of the query, including progress and bytes scannned.
| Constructor and Description | 
|---|
| QueryStatus() | 
| Modifier and Type | Method and Description | 
|---|---|
| QueryStatus | clone() | 
| boolean | equals(Object obj) | 
| Long | getCumulativeBytesMetered()
 The amount of data scanned by the query in bytes that you will be charged for. | 
| Long | getCumulativeBytesScanned()
 The amount of data scanned by the query in bytes. | 
| Double | getProgressPercentage()
 The progress of the query, expressed as a percentage. | 
| int | hashCode() | 
| void | marshall(ProtocolMarshaller protocolMarshaller)Marshalls this structured data using the given  ProtocolMarshaller. | 
| void | setCumulativeBytesMetered(Long cumulativeBytesMetered)
 The amount of data scanned by the query in bytes that you will be charged for. | 
| void | setCumulativeBytesScanned(Long cumulativeBytesScanned)
 The amount of data scanned by the query in bytes. | 
| void | setProgressPercentage(Double progressPercentage)
 The progress of the query, expressed as a percentage. | 
| String | toString()Returns a string representation of this object. | 
| QueryStatus | withCumulativeBytesMetered(Long cumulativeBytesMetered)
 The amount of data scanned by the query in bytes that you will be charged for. | 
| QueryStatus | withCumulativeBytesScanned(Long cumulativeBytesScanned)
 The amount of data scanned by the query in bytes. | 
| QueryStatus | withProgressPercentage(Double progressPercentage)
 The progress of the query, expressed as a percentage. | 
public void setProgressPercentage(Double progressPercentage)
The progress of the query, expressed as a percentage.
progressPercentage - The progress of the query, expressed as a percentage.public Double getProgressPercentage()
The progress of the query, expressed as a percentage.
public QueryStatus withProgressPercentage(Double progressPercentage)
The progress of the query, expressed as a percentage.
progressPercentage - The progress of the query, expressed as a percentage.public void setCumulativeBytesScanned(Long 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.
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.public Long getCumulativeBytesScanned()
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.
public QueryStatus withCumulativeBytesScanned(Long 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.
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.public void setCumulativeBytesMetered(Long 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 execution or when the query is cancelled.
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 execution or when the query is
        cancelled.public Long getCumulativeBytesMetered()
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 execution or when the query is cancelled.
public QueryStatus withCumulativeBytesMetered(Long 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 execution or when the query is cancelled.
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 execution or when the query is
        cancelled.public String toString()
toString in class ObjectObject.toString()public QueryStatus clone()
public void marshall(ProtocolMarshaller protocolMarshaller)
StructuredPojoProtocolMarshaller.marshall in interface StructuredPojoprotocolMarshaller - Implementation of ProtocolMarshaller used to marshall this object's data.