FeatureGroupOfflineStoreConfig constructor

const FeatureGroupOfflineStoreConfig({
  1. Input<FeatureGroupOfflineStoreConfigDataCatalogConfig?>? dataCatalogConfig,
  2. Input<bool?>? disableGlueTableCreation,
  3. required Input<FeatureGroupOfflineStoreConfigS3StorageConfig> s3StorageConfig,
  4. Input<String?>? tableFormat,
})

Creates a new FeatureGroupOfflineStoreConfig. dataCatalogConfig The meta data of the Glue table that is autogenerated when an OfflineStore is created. See Data Catalog Config Below. disableGlueTableCreation Set to true to turn Online Store On. s3StorageConfig The Amazon Simple Storage (Amazon S3) location of OfflineStore. See S3 Storage Config Below. tableFormat Format for the offline store table. Supported formats are Glue (Default) and Apache Iceberg (https://iceberg.apache.org/).

Implementation

const FeatureGroupOfflineStoreConfig({
  this.dataCatalogConfig,
  this.disableGlueTableCreation,
  required this.s3StorageConfig,
  this.tableFormat,
});