Package feast.proto.core
Interface DataSourceProto.DataSource.AthenaOptionsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DataSourceProto.DataSource.AthenaOptions,DataSourceProto.DataSource.AthenaOptions.Builder
- Enclosing class:
- DataSourceProto.DataSource
public static interface DataSourceProto.DataSource.AthenaOptionsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDatabase()Athena database namecom.google.protobuf.ByteStringgetDatabaseBytes()Athena database nameStringgetDataSource()Athena schema namecom.google.protobuf.ByteStringgetDataSourceBytes()Athena schema nameStringgetQuery()SQL query that returns a table containing feature data.com.google.protobuf.ByteStringgetQueryBytes()SQL query that returns a table containing feature data.StringgetTable()Athena table namecom.google.protobuf.ByteStringgetTableBytes()Athena table name-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTable
String getTable()
Athena table name
string table = 1;- Returns:
- The table.
-
getTableBytes
com.google.protobuf.ByteString getTableBytes()
Athena table name
string table = 1;- Returns:
- The bytes for table.
-
getQuery
String getQuery()
SQL query that returns a table containing feature data. Must contain an event_timestamp column, and respective entity columns
string query = 2;- Returns:
- The query.
-
getQueryBytes
com.google.protobuf.ByteString getQueryBytes()
SQL query that returns a table containing feature data. Must contain an event_timestamp column, and respective entity columns
string query = 2;- Returns:
- The bytes for query.
-
getDatabase
String getDatabase()
Athena database name
string database = 3;- Returns:
- The database.
-
getDatabaseBytes
com.google.protobuf.ByteString getDatabaseBytes()
Athena database name
string database = 3;- Returns:
- The bytes for database.
-
getDataSource
String getDataSource()
Athena schema name
string data_source = 4;- Returns:
- The dataSource.
-
getDataSourceBytes
com.google.protobuf.ByteString getDataSourceBytes()
Athena schema name
string data_source = 4;- Returns:
- The bytes for dataSource.
-
-