Class DescribeTableQueryBuilder
- java.lang.Object
-
- com.amazonaws.athena.connectors.timestream.query.DescribeTableQueryBuilder
-
public class DescribeTableQueryBuilder extends Object
Used to build a Timestream query which can describe a table in a specific database. This can be used to obtain key schema information about the columns in this table and their respective types. This class uses StringTemplate to separate formatting from parameter replacement.
-
-
Constructor Summary
Constructors Constructor Description DescribeTableQueryBuilder(org.stringtemplate.v4.ST template)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
build()
String
getDatabaseName()
String
getTableName()
DescribeTableQueryBuilder
withDatabaseName(String databaseName)
DescribeTableQueryBuilder
withTablename(String tableName)
-
-
-
Method Detail
-
withDatabaseName
public DescribeTableQueryBuilder withDatabaseName(String databaseName)
-
withTablename
public DescribeTableQueryBuilder withTablename(String tableName)
-
getDatabaseName
public String getDatabaseName()
-
getTableName
public String getTableName()
-
build
public String build()
-
-