#[non_exhaustive]pub struct OnlineStoreSecurityConfig {
    pub kms_key_id: Option<String>,
}Expand description
The security configuration for OnlineStore.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.kms_key_id: Option<String>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"
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 for OnlineStoreSecurityConfig
 
impl PartialEq 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 ==.