Package feast.proto.core
Interface DataSourceProto.DataSource.RedshiftOptionsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DataSourceProto.DataSource.RedshiftOptions,DataSourceProto.DataSource.RedshiftOptions.Builder
- Enclosing class:
- DataSourceProto.DataSource
public static interface DataSourceProto.DataSource.RedshiftOptionsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDatabase()Redshift database namecom.google.protobuf.ByteStringgetDatabaseBytes()Redshift database nameStringgetQuery()SQL query that returns a table containing feature data.com.google.protobuf.ByteStringgetQueryBytes()SQL query that returns a table containing feature data.StringgetSchema()Redshift schema namecom.google.protobuf.ByteStringgetSchemaBytes()Redshift schema nameStringgetTable()Redshift table namecom.google.protobuf.ByteStringgetTableBytes()Redshift 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()
Redshift table name
string table = 1;- Returns:
- The table.
-
getTableBytes
com.google.protobuf.ByteString getTableBytes()
Redshift 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.
-
getSchema
String getSchema()
Redshift schema name
string schema = 3;- Returns:
- The schema.
-
getSchemaBytes
com.google.protobuf.ByteString getSchemaBytes()
Redshift schema name
string schema = 3;- Returns:
- The bytes for schema.
-
getDatabase
String getDatabase()
Redshift database name
string database = 4;- Returns:
- The database.
-
getDatabaseBytes
com.google.protobuf.ByteString getDatabaseBytes()
Redshift database name
string database = 4;- Returns:
- The bytes for database.
-
-