Interface GetTableOptimizerResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetTableOptimizerResponse.Builder,GetTableOptimizerResponse>,GlueResponse.Builder,SdkBuilder<GetTableOptimizerResponse.Builder,GetTableOptimizerResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetTableOptimizerResponse
public static interface GetTableOptimizerResponse.Builder extends GlueResponse.Builder, SdkPojo, CopyableBuilder<GetTableOptimizerResponse.Builder,GetTableOptimizerResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description GetTableOptimizerResponse.BuildercatalogId(String catalogId)The Catalog ID of the table.GetTableOptimizerResponse.BuilderdatabaseName(String databaseName)The name of the database in the catalog in which the table resides.GetTableOptimizerResponse.BuildertableName(String tableName)The name of the table.default GetTableOptimizerResponse.BuildertableOptimizer(Consumer<TableOptimizer.Builder> tableOptimizer)The optimizer associated with the specified table.GetTableOptimizerResponse.BuildertableOptimizer(TableOptimizer tableOptimizer)The optimizer associated with the specified table.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.glue.model.GlueResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
catalogId
GetTableOptimizerResponse.Builder catalogId(String catalogId)
The Catalog ID of the table.
- Parameters:
catalogId- The Catalog ID of the table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
databaseName
GetTableOptimizerResponse.Builder databaseName(String databaseName)
The name of the database in the catalog in which the table resides.
- Parameters:
databaseName- The name of the database in the catalog in which the table resides.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tableName
GetTableOptimizerResponse.Builder tableName(String tableName)
The name of the table.
- Parameters:
tableName- The name of the table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tableOptimizer
GetTableOptimizerResponse.Builder tableOptimizer(TableOptimizer tableOptimizer)
The optimizer associated with the specified table.
- Parameters:
tableOptimizer- The optimizer associated with the specified table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tableOptimizer
default GetTableOptimizerResponse.Builder tableOptimizer(Consumer<TableOptimizer.Builder> tableOptimizer)
The optimizer associated with the specified table.
This is a convenience method that creates an instance of theTableOptimizer.Builderavoiding the need to create one manually viaTableOptimizer.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed totableOptimizer(TableOptimizer).- Parameters:
tableOptimizer- a consumer that will call methods onTableOptimizer.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
tableOptimizer(TableOptimizer)
-
-