#[non_exhaustive]pub struct OnlineStoreSecurityConfig { /* private fields */ }
Expand description
The security configuration for OnlineStore
.
Implementations§
source§impl OnlineStoreSecurityConfig
impl OnlineStoreSecurityConfig
sourcepub fn kms_key_id(&self) -> Option<&str>
pub fn kms_key_id(&self) -> Option<&str>
The Amazon Web Services Key Management Service (KMS) key ARN that SageMaker Feature Store uses to encrypt the Amazon S3 objects at rest using Amazon S3 server-side encryption.
The caller (either user or IAM role) of CreateFeatureGroup
must have below permissions to the OnlineStore
KmsKeyId
:
-
"kms:Encrypt"
-
"kms:Decrypt"
-
"kms:DescribeKey"
-
"kms:CreateGrant"
-
"kms:RetireGrant"
-
"kms:ReEncryptFrom"
-
"kms:ReEncryptTo"
-
"kms:GenerateDataKey"
-
"kms:ListAliases"
-
"kms:ListGrants"
-
"kms:RevokeGrant"
The caller (either user or IAM role) to all DataPlane operations (PutRecord
, GetRecord
, DeleteRecord
) must have the following permissions to the KmsKeyId
:
-
"kms:Decrypt"
source§impl OnlineStoreSecurityConfig
impl OnlineStoreSecurityConfig
sourcepub fn builder() -> OnlineStoreSecurityConfigBuilder
pub fn builder() -> OnlineStoreSecurityConfigBuilder
Creates a new builder-style object to manufacture OnlineStoreSecurityConfig
.
Trait Implementations§
source§impl Clone for OnlineStoreSecurityConfig
impl Clone for OnlineStoreSecurityConfig
source§fn clone(&self) -> OnlineStoreSecurityConfig
fn clone(&self) -> OnlineStoreSecurityConfig
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for OnlineStoreSecurityConfig
impl Debug for OnlineStoreSecurityConfig
source§impl PartialEq<OnlineStoreSecurityConfig> for OnlineStoreSecurityConfig
impl PartialEq<OnlineStoreSecurityConfig> for OnlineStoreSecurityConfig
source§fn eq(&self, other: &OnlineStoreSecurityConfig) -> bool
fn eq(&self, other: &OnlineStoreSecurityConfig) -> bool
self
and other
values to be equal, and is used
by ==
.