Interface QueryExecutionContext.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<QueryExecutionContext.Builder,QueryExecutionContext>,SdkBuilder<QueryExecutionContext.Builder,QueryExecutionContext>,SdkPojo
- Enclosing class:
- QueryExecutionContext
public static interface QueryExecutionContext.Builder extends SdkPojo, CopyableBuilder<QueryExecutionContext.Builder,QueryExecutionContext>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description QueryExecutionContext.Buildercatalog(String catalog)The name of the data catalog used in the query execution.QueryExecutionContext.Builderdatabase(String database)The name of the database used in 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
-
database
QueryExecutionContext.Builder database(String database)
The name of the database used in the query execution. The database must exist in the catalog.
- Parameters:
database- The name of the database used in the query execution. The database must exist in the catalog.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
catalog
QueryExecutionContext.Builder catalog(String catalog)
The name of the data catalog used in the query execution.
- Parameters:
catalog- The name of the data catalog used in the query execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-