#[non_exhaustive]pub struct PutEncryptionConfigInput {
pub key_id: Option<String>,
pub type: Option<EncryptionType>,
}
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.key_id: Option<String>
An Amazon Web Services KMS key in one of the following formats:
-
Alias - The name of the key. For example,
alias/MyKey
. -
Key ID - The KMS key ID of the key. For example,
ae4aa6d49-a4d8-9df9-a475-4ff6d7898456
. Amazon Web Services X-Ray does not support asymmetric KMS keys. -
ARN - The full Amazon Resource Name of the key ID or alias. For example,
arn:aws:kms:us-east-2:123456789012:key/ae4aa6d49-a4d8-9df9-a475-4ff6d7898456
. Use this format to specify a key in a different account.
Omit this key if you set Type
to NONE
.
type: Option<EncryptionType>
The type of encryption. Set to KMS
to use your own key for encryption. Set to NONE
for default encryption.
Implementations§
source§impl PutEncryptionConfigInput
impl PutEncryptionConfigInput
sourcepub fn key_id(&self) -> Option<&str>
pub fn key_id(&self) -> Option<&str>
An Amazon Web Services KMS key in one of the following formats:
-
Alias - The name of the key. For example,
alias/MyKey
. -
Key ID - The KMS key ID of the key. For example,
ae4aa6d49-a4d8-9df9-a475-4ff6d7898456
. Amazon Web Services X-Ray does not support asymmetric KMS keys. -
ARN - The full Amazon Resource Name of the key ID or alias. For example,
arn:aws:kms:us-east-2:123456789012:key/ae4aa6d49-a4d8-9df9-a475-4ff6d7898456
. Use this format to specify a key in a different account.
Omit this key if you set Type
to NONE
.
sourcepub fn type(&self) -> Option<&EncryptionType>
pub fn type(&self) -> Option<&EncryptionType>
The type of encryption. Set to KMS
to use your own key for encryption. Set to NONE
for default encryption.
source§impl PutEncryptionConfigInput
impl PutEncryptionConfigInput
sourcepub fn builder() -> PutEncryptionConfigInputBuilder
pub fn builder() -> PutEncryptionConfigInputBuilder
Creates a new builder-style object to manufacture PutEncryptionConfigInput
.
Trait Implementations§
source§impl Clone for PutEncryptionConfigInput
impl Clone for PutEncryptionConfigInput
source§fn clone(&self) -> PutEncryptionConfigInput
fn clone(&self) -> PutEncryptionConfigInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for PutEncryptionConfigInput
impl Debug for PutEncryptionConfigInput
source§impl PartialEq for PutEncryptionConfigInput
impl PartialEq for PutEncryptionConfigInput
source§fn eq(&self, other: &PutEncryptionConfigInput) -> bool
fn eq(&self, other: &PutEncryptionConfigInput) -> bool
self
and other
values to be equal, and is used
by ==
.