Struct aws_sdk_sagemaker::model::OfflineStoreConfig
source · #[non_exhaustive]pub struct OfflineStoreConfig { /* private fields */ }
Expand description
The configuration of an OfflineStore
.
Provide an OfflineStoreConfig
in a request to CreateFeatureGroup
to create an OfflineStore
.
To encrypt an OfflineStore
using at rest data encryption, specify Amazon Web Services Key Management Service (KMS) key ID, or KMSKeyId
, in S3StorageConfig
.
Implementations§
source§impl OfflineStoreConfig
impl OfflineStoreConfig
sourcepub fn s3_storage_config(&self) -> Option<&S3StorageConfig>
pub fn s3_storage_config(&self) -> Option<&S3StorageConfig>
The Amazon Simple Storage (Amazon S3) location of OfflineStore
.
sourcepub fn disable_glue_table_creation(&self) -> bool
pub fn disable_glue_table_creation(&self) -> bool
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) -> Option<&DataCatalogConfig>
pub fn data_catalog_config(&self) -> Option<&DataCatalogConfig>
The meta data of the Glue table that is autogenerated when an OfflineStore
is created.
sourcepub fn table_format(&self) -> Option<&TableFormat>
pub fn table_format(&self) -> Option<&TableFormat>
Format for the offline store table. Supported formats are Glue (Default) and Apache Iceberg.
source§impl OfflineStoreConfig
impl OfflineStoreConfig
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture OfflineStoreConfig
.
Trait Implementations§
source§impl Clone for OfflineStoreConfig
impl Clone for OfflineStoreConfig
source§fn clone(&self) -> OfflineStoreConfig
fn clone(&self) -> OfflineStoreConfig
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for OfflineStoreConfig
impl Debug for OfflineStoreConfig
source§impl PartialEq<OfflineStoreConfig> for OfflineStoreConfig
impl PartialEq<OfflineStoreConfig> for OfflineStoreConfig
source§fn eq(&self, other: &OfflineStoreConfig) -> bool
fn eq(&self, other: &OfflineStoreConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.