Struct aws_sdk_mq::model::EncryptionOptions
source · [−]#[non_exhaustive]pub struct EncryptionOptions { /* private fields */ }
Expand description
Does not apply to RabbitMQ brokers.
Encryption options for the broker.
Implementations
sourceimpl EncryptionOptions
impl EncryptionOptions
sourcepub fn kms_key_id(&self) -> Option<&str>
pub fn kms_key_id(&self) -> Option<&str>
The customer master key (CMK) to use for the AWS Key Management Service (KMS). This key is used to encrypt your data at rest. If not provided, Amazon MQ will use a default CMK to encrypt your data.
sourcepub fn use_aws_owned_key(&self) -> bool
pub fn use_aws_owned_key(&self) -> bool
Enables the use of an AWS owned CMK using AWS Key Management Service (KMS). Set to true by default, if no value is provided, for example, for RabbitMQ brokers.
sourceimpl EncryptionOptions
impl EncryptionOptions
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture EncryptionOptions
.
Trait Implementations
sourceimpl Clone for EncryptionOptions
impl Clone for EncryptionOptions
sourcefn clone(&self) -> EncryptionOptions
fn clone(&self) -> EncryptionOptions
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for EncryptionOptions
impl Debug for EncryptionOptions
sourceimpl PartialEq<EncryptionOptions> for EncryptionOptions
impl PartialEq<EncryptionOptions> for EncryptionOptions
sourcefn eq(&self, other: &EncryptionOptions) -> bool
fn eq(&self, other: &EncryptionOptions) -> bool
impl StructuralPartialEq for EncryptionOptions
Auto Trait Implementations
impl RefUnwindSafe for EncryptionOptions
impl Send for EncryptionOptions
impl Sync for EncryptionOptions
impl Unpin for EncryptionOptions
impl UnwindSafe for EncryptionOptions
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more