#[non_exhaustive]pub struct ExportServerSideEncryption {
pub kms_key_arn: Option<String>,
pub type: Option<ServerSideEncryptionTypes>,
}Expand description
Encryption configuration of the export job. Includes the encryption type in addition to the AWS KMS key. The KMS key is only necessary if you chose the KMS encryption. type.
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_arn: Option<String>The Amazon Resource Name (ARN) of the AWS KMS key you want to use to encrypt the Amazon S3 objects. This parameter is required if you choose aws:kms as an encryption type.
type: Option<ServerSideEncryptionTypes>The type of server side encryption used for encrypting the objects in Amazon S3.
Implementations
The Amazon Resource Name (ARN) of the AWS KMS key you want to use to encrypt the Amazon S3 objects. This parameter is required if you choose aws:kms as an encryption type.
The type of server side encryption used for encrypting the objects in Amazon S3.
Creates a new builder-style object to manufacture ExportServerSideEncryption
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for ExportServerSideEncryption
impl Send for ExportServerSideEncryption
impl Sync for ExportServerSideEncryption
impl Unpin for ExportServerSideEncryption
impl UnwindSafe for ExportServerSideEncryption
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more