Interface UnprocessedQueryExecutionId.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<UnprocessedQueryExecutionId.Builder,UnprocessedQueryExecutionId>,SdkBuilder<UnprocessedQueryExecutionId.Builder,UnprocessedQueryExecutionId>,SdkPojo
- Enclosing class:
- UnprocessedQueryExecutionId
public static interface UnprocessedQueryExecutionId.Builder extends SdkPojo, CopyableBuilder<UnprocessedQueryExecutionId.Builder,UnprocessedQueryExecutionId>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UnprocessedQueryExecutionId.BuildererrorCode(String errorCode)The error code returned when the query execution failed to process, if applicable.UnprocessedQueryExecutionId.BuildererrorMessage(String errorMessage)The error message returned when the query execution failed to process, if applicable.UnprocessedQueryExecutionId.BuilderqueryExecutionId(String queryExecutionId)The unique identifier of the query execution.-
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
-
queryExecutionId
UnprocessedQueryExecutionId.Builder queryExecutionId(String queryExecutionId)
The unique identifier of the query execution.
- Parameters:
queryExecutionId- The unique identifier of the query execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorCode
UnprocessedQueryExecutionId.Builder errorCode(String errorCode)
The error code returned when the query execution failed to process, if applicable.
- Parameters:
errorCode- The error code returned when the query execution failed to process, if applicable.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorMessage
UnprocessedQueryExecutionId.Builder errorMessage(String errorMessage)
The error message returned when the query execution failed to process, if applicable.
- Parameters:
errorMessage- The error message returned when the query execution failed to process, if applicable.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-