Package feast.proto.core
Interface DataSourceProto.DataSource.KinesisOptionsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DataSourceProto.DataSource.KinesisOptions,DataSourceProto.DataSource.KinesisOptions.Builder
- Enclosing class:
- DataSourceProto.DataSource
public static interface DataSourceProto.DataSource.KinesisOptionsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DataFormatProto.StreamFormatgetRecordFormat()Defines the data format encoding the feature/entity data in Kinesis records.DataFormatProto.StreamFormatOrBuildergetRecordFormatOrBuilder()Defines the data format encoding the feature/entity data in Kinesis records.StringgetRegion()AWS region of the Kinesis streamcom.google.protobuf.ByteStringgetRegionBytes()AWS region of the Kinesis streamStringgetStreamName()Name of the Kinesis stream to obtain feature data from.com.google.protobuf.ByteStringgetStreamNameBytes()Name of the Kinesis stream to obtain feature data from.booleanhasRecordFormat()Defines the data format encoding the feature/entity data in Kinesis records.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getRegion
String getRegion()
AWS region of the Kinesis stream
string region = 1;- Returns:
- The region.
-
getRegionBytes
com.google.protobuf.ByteString getRegionBytes()
AWS region of the Kinesis stream
string region = 1;- Returns:
- The bytes for region.
-
getStreamName
String getStreamName()
Name of the Kinesis stream to obtain feature data from.
string stream_name = 2;- Returns:
- The streamName.
-
getStreamNameBytes
com.google.protobuf.ByteString getStreamNameBytes()
Name of the Kinesis stream to obtain feature data from.
string stream_name = 2;- Returns:
- The bytes for streamName.
-
hasRecordFormat
boolean hasRecordFormat()
Defines the data format encoding the feature/entity data in Kinesis records. Kinesis Data Sources support Avro and Proto as data formats.
.feast.core.StreamFormat record_format = 3;- Returns:
- Whether the recordFormat field is set.
-
getRecordFormat
DataFormatProto.StreamFormat getRecordFormat()
Defines the data format encoding the feature/entity data in Kinesis records. Kinesis Data Sources support Avro and Proto as data formats.
.feast.core.StreamFormat record_format = 3;- Returns:
- The recordFormat.
-
getRecordFormatOrBuilder
DataFormatProto.StreamFormatOrBuilder getRecordFormatOrBuilder()
Defines the data format encoding the feature/entity data in Kinesis records. Kinesis Data Sources support Avro and Proto as data formats.
.feast.core.StreamFormat record_format = 3;
-
-