Struct aws_sdk_sagemaker::model::offline_store_config::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for OfflineStoreConfig
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn s3_storage_config(self, input: S3StorageConfig) -> Self
pub fn s3_storage_config(self, input: S3StorageConfig) -> Self
The Amazon Simple Storage (Amazon S3) location of OfflineStore
.
sourcepub fn set_s3_storage_config(self, input: Option<S3StorageConfig>) -> Self
pub fn set_s3_storage_config(self, input: Option<S3StorageConfig>) -> Self
The Amazon Simple Storage (Amazon S3) location of OfflineStore
.
sourcepub fn disable_glue_table_creation(self, input: bool) -> Self
pub fn disable_glue_table_creation(self, input: bool) -> Self
Set to True
to disable the automatic creation of an Amazon Web Services Glue table when configuring an OfflineStore
.
sourcepub fn set_disable_glue_table_creation(self, input: Option<bool>) -> Self
pub fn set_disable_glue_table_creation(self, input: Option<bool>) -> Self
Set to True
to disable the automatic creation of an Amazon Web Services Glue table when configuring an OfflineStore
.
sourcepub fn data_catalog_config(self, input: DataCatalogConfig) -> Self
pub fn data_catalog_config(self, input: DataCatalogConfig) -> Self
The meta data of the Glue table that is autogenerated when an OfflineStore
is created.
sourcepub fn set_data_catalog_config(self, input: Option<DataCatalogConfig>) -> Self
pub fn set_data_catalog_config(self, input: Option<DataCatalogConfig>) -> Self
The meta data of the Glue table that is autogenerated when an OfflineStore
is created.
sourcepub fn table_format(self, input: TableFormat) -> Self
pub fn table_format(self, input: TableFormat) -> Self
Format for the offline store table. Supported formats are Glue (Default) and Apache Iceberg.
sourcepub fn set_table_format(self, input: Option<TableFormat>) -> Self
pub fn set_table_format(self, input: Option<TableFormat>) -> Self
Format for the offline store table. Supported formats are Glue (Default) and Apache Iceberg.
sourcepub fn build(self) -> OfflineStoreConfig
pub fn build(self) -> OfflineStoreConfig
Consumes the builder and constructs a OfflineStoreConfig
.