Interface QueryInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<QueryInfo.Builder,QueryInfo>,SdkBuilder<QueryInfo.Builder,QueryInfo>,SdkPojo
- Enclosing class:
- QueryInfo
public static interface QueryInfo.Builder extends SdkPojo, CopyableBuilder<QueryInfo.Builder,QueryInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description QueryInfo.BuildercreateTime(Long createTime)The date and time that this query was created.QueryInfo.BuilderlogGroupName(String logGroupName)The name of the log group scanned by this query.QueryInfo.BuilderqueryId(String queryId)The unique ID number of this query.QueryInfo.BuilderqueryString(String queryString)The query string used in this query.QueryInfo.Builderstatus(String status)The status of this query.QueryInfo.Builderstatus(QueryStatus status)The status of this query.-
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
-
queryId
QueryInfo.Builder queryId(String queryId)
The unique ID number of this query.
- Parameters:
queryId- The unique ID number of this query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queryString
QueryInfo.Builder queryString(String queryString)
The query string used in this query.
- Parameters:
queryString- The query string used in this query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
QueryInfo.Builder status(String status)
The status of this query. Possible values are
Cancelled,Complete,Failed,Running,Scheduled, andUnknown.- Parameters:
status- The status of this query. Possible values areCancelled,Complete,Failed,Running,Scheduled, andUnknown.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
QueryStatus,QueryStatus
-
status
QueryInfo.Builder status(QueryStatus status)
The status of this query. Possible values are
Cancelled,Complete,Failed,Running,Scheduled, andUnknown.- Parameters:
status- The status of this query. Possible values areCancelled,Complete,Failed,Running,Scheduled, andUnknown.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
QueryStatus,QueryStatus
-
createTime
QueryInfo.Builder createTime(Long createTime)
The date and time that this query was created.
- Parameters:
createTime- The date and time that this query was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
logGroupName
QueryInfo.Builder logGroupName(String logGroupName)
The name of the log group scanned by this query.
- Parameters:
logGroupName- The name of the log group scanned by this query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-