Struct aws_sdk_sagemaker::model::online_store_config::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for OnlineStoreConfig
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn security_config(self, input: OnlineStoreSecurityConfig) -> Self
pub fn security_config(self, input: OnlineStoreSecurityConfig) -> Self
Use to specify KMS Key ID (KMSKeyId
) for at-rest encryption of your OnlineStore
.
sourcepub fn set_security_config(
self,
input: Option<OnlineStoreSecurityConfig>
) -> Self
pub fn set_security_config(
self,
input: Option<OnlineStoreSecurityConfig>
) -> Self
Use to specify KMS Key ID (KMSKeyId
) for at-rest encryption of your OnlineStore
.
sourcepub fn enable_online_store(self, input: bool) -> Self
pub fn enable_online_store(self, input: bool) -> Self
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
.
sourcepub fn set_enable_online_store(self, input: Option<bool>) -> Self
pub fn set_enable_online_store(self, input: Option<bool>) -> Self
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
.
sourcepub fn build(self) -> OnlineStoreConfig
pub fn build(self) -> OnlineStoreConfig
Consumes the builder and constructs a OnlineStoreConfig
.