Interface GetTablesRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<GetTablesRequest.Builder,GetTablesRequest>,GlueRequest.Builder,SdkBuilder<GetTablesRequest.Builder,GetTablesRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- GetTablesRequest
public static interface GetTablesRequest.Builder extends GlueRequest.Builder, SdkPojo, CopyableBuilder<GetTablesRequest.Builder,GetTablesRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetTablesRequest.BuildercatalogId(String catalogId)The ID of the Data Catalog where the tables reside.GetTablesRequest.BuilderdatabaseName(String databaseName)The database in the catalog whose tables to list.GetTablesRequest.Builderexpression(String expression)A regular expression pattern.GetTablesRequest.BuildermaxResults(Integer maxResults)The maximum number of tables to return in a single response.GetTablesRequest.BuildernextToken(String nextToken)A continuation token, included if this is a continuation call.GetTablesRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)GetTablesRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)GetTablesRequest.BuilderqueryAsOfTime(Instant queryAsOfTime)The time as of when to read the table contents.GetTablesRequest.BuildertransactionId(String transactionId)The transaction ID at which to read the table contents.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.glue.model.GlueRequest.Builder
build
-
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
-
catalogId
GetTablesRequest.Builder catalogId(String catalogId)
The ID of the Data Catalog where the tables reside. If none is provided, the Amazon Web Services account ID is used by default.
- Parameters:
catalogId- The ID of the Data Catalog where the tables reside. If none is provided, the Amazon Web Services account ID is used by default.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
databaseName
GetTablesRequest.Builder databaseName(String databaseName)
The database in the catalog whose tables to list. For Hive compatibility, this name is entirely lowercase.
- Parameters:
databaseName- The database in the catalog whose tables to list. For Hive compatibility, this name is entirely lowercase.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
expression
GetTablesRequest.Builder expression(String expression)
A regular expression pattern. If present, only those tables whose names match the pattern are returned.
- Parameters:
expression- A regular expression pattern. If present, only those tables whose names match the pattern are returned.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextToken
GetTablesRequest.Builder nextToken(String nextToken)
A continuation token, included if this is a continuation call.
- Parameters:
nextToken- A continuation token, included if this is a continuation call.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxResults
GetTablesRequest.Builder maxResults(Integer maxResults)
The maximum number of tables to return in a single response.
- Parameters:
maxResults- The maximum number of tables to return in a single response.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
transactionId
GetTablesRequest.Builder transactionId(String transactionId)
The transaction ID at which to read the table contents.
- Parameters:
transactionId- The transaction ID at which to read the table contents.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queryAsOfTime
GetTablesRequest.Builder queryAsOfTime(Instant queryAsOfTime)
The time as of when to read the table contents. If not set, the most recent transaction commit time will be used. Cannot be specified along with
TransactionId.- Parameters:
queryAsOfTime- The time as of when to read the table contents. If not set, the most recent transaction commit time will be used. Cannot be specified along withTransactionId.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
GetTablesRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
GetTablesRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-