pub struct S3Encryption {
pub kms_key_arn: Option<String>,
pub s3_encryption_mode: Option<String>,
}
Expand description
Specifies how Amazon Simple Storage Service (Amazon S3) data should be encrypted.
Fields§
§kms_key_arn: Option<String>
The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data.
s3_encryption_mode: Option<String>
The encryption mode to use for Amazon S3 data.
Trait Implementations§
Source§impl Clone for S3Encryption
impl Clone for S3Encryption
Source§fn clone(&self) -> S3Encryption
fn clone(&self) -> S3Encryption
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 S3Encryption
impl Debug for S3Encryption
Source§impl Default for S3Encryption
impl Default for S3Encryption
Source§fn default() -> S3Encryption
fn default() -> S3Encryption
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for S3Encryption
impl<'de> Deserialize<'de> for S3Encryption
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
Source§impl PartialEq for S3Encryption
impl PartialEq for S3Encryption
Source§impl Serialize for S3Encryption
impl Serialize for S3Encryption
impl StructuralPartialEq for S3Encryption
Auto Trait Implementations§
impl Freeze for S3Encryption
impl RefUnwindSafe for S3Encryption
impl Send for S3Encryption
impl Sync for S3Encryption
impl Unpin for S3Encryption
impl UnwindSafe for S3Encryption
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