[][src]Struct rusoto_sagemaker::OfflineStoreConfig

pub struct OfflineStoreConfig {
    pub data_catalog_config: Option<DataCatalogConfig>,
    pub disable_glue_table_creation: Option<bool>,
    pub s3_storage_config: S3StorageConfig,
}

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 AWS Key Management Service (KMS) key ID, or KMSKeyId, in S3StorageConfig.

Fields

data_catalog_config: Option<DataCatalogConfig>

The meta data of the Glue table that is autogenerated when an OfflineStore is created.

disable_glue_table_creation: Option<bool>

Set to True to disable the automatic creation of an AWS Glue table when configuring an OfflineStore.

s3_storage_config: S3StorageConfig

The Amazon Simple Storage (Amazon S3) location of OfflineStore.

Trait Implementations

impl Clone for OfflineStoreConfig[src]

impl Debug for OfflineStoreConfig[src]

impl Default for OfflineStoreConfig[src]

impl<'de> Deserialize<'de> for OfflineStoreConfig[src]

impl PartialEq<OfflineStoreConfig> for OfflineStoreConfig[src]

impl Serialize for OfflineStoreConfig[src]

impl StructuralPartialEq for OfflineStoreConfig[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.