pub struct OnlineStoreSecurityConfig {
pub kms_key_id: Option<String>,
}
Expand description
The security configuration for OnlineStore
.
Fields§
§kms_key_id: Option<String>
The ID of the AWS Key Management Service (AWS KMS) key that SageMaker Feature Store uses to encrypt the Amazon S3 objects at rest using Amazon S3 server-side encryption.
The caller (either IAM 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 IAM user or IAM role) to all DataPlane operations (PutRecord
, GetRecord
, DeleteRecord
) must have the following permissions to the KmsKeyId
:
-
"kms:Decrypt"
Trait Implementations§
Source§impl Clone for OnlineStoreSecurityConfig
impl Clone for OnlineStoreSecurityConfig
Source§fn clone(&self) -> OnlineStoreSecurityConfig
fn clone(&self) -> OnlineStoreSecurityConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for OnlineStoreSecurityConfig
impl Debug for OnlineStoreSecurityConfig
Source§impl Default for OnlineStoreSecurityConfig
impl Default for OnlineStoreSecurityConfig
Source§fn default() -> OnlineStoreSecurityConfig
fn default() -> OnlineStoreSecurityConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OnlineStoreSecurityConfig
impl<'de> Deserialize<'de> for OnlineStoreSecurityConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for OnlineStoreSecurityConfig
Auto Trait Implementations§
impl Freeze for OnlineStoreSecurityConfig
impl RefUnwindSafe for OnlineStoreSecurityConfig
impl Send for OnlineStoreSecurityConfig
impl Sync for OnlineStoreSecurityConfig
impl Unpin for OnlineStoreSecurityConfig
impl UnwindSafe for OnlineStoreSecurityConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more