[][src]Struct rusoto_sagemaker::OnlineStoreConfig

pub struct OnlineStoreConfig {
    pub enable_online_store: Option<bool>,
    pub security_config: Option<OnlineStoreSecurityConfig>,
}

Use this to specify the AWS Key Management Service (KMS) Key ID, or KMSKeyId, for at rest data encryption. You can turn OnlineStore on or off by specifying the EnableOnlineStore flag at General Assembly; the default value is False.

Fields

enable_online_store: Option<bool>

Turn OnlineStore off by specifying False for the EnableOnlineStore flag. Turn OnlineStore on by specifying True for the EnableOnlineStore flag.

The default value is False.

security_config: Option<OnlineStoreSecurityConfig>

Use to specify KMS Key ID (KMSKeyId) for at-rest encryption of your OnlineStore.

Trait Implementations

impl Clone for OnlineStoreConfig[src]

impl Debug for OnlineStoreConfig[src]

impl Default for OnlineStoreConfig[src]

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

impl PartialEq<OnlineStoreConfig> for OnlineStoreConfig[src]

impl Serialize for OnlineStoreConfig[src]

impl StructuralPartialEq for OnlineStoreConfig[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.