Struct aws_sdk_paymentcryptography::types::WrappedKey
source · #[non_exhaustive]pub struct WrappedKey {
pub wrapping_key_arn: Option<String>,
pub wrapped_key_material_format: Option<WrappedKeyMaterialFormat>,
pub key_material: Option<String>,
}
Expand description
Parameter information for generating a wrapped key using TR-31 or TR-34 standard.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.wrapping_key_arn: Option<String>
The KeyARN
of the wrapped key.
wrapped_key_material_format: Option<WrappedKeyMaterialFormat>
The key block format of a wrapped key.
key_material: Option<String>
Parameter information for generating a wrapped key using TR-31 or TR-34 standard.
Implementations§
source§impl WrappedKey
impl WrappedKey
sourcepub fn wrapping_key_arn(&self) -> Option<&str>
pub fn wrapping_key_arn(&self) -> Option<&str>
The KeyARN
of the wrapped key.
sourcepub fn wrapped_key_material_format(&self) -> Option<&WrappedKeyMaterialFormat>
pub fn wrapped_key_material_format(&self) -> Option<&WrappedKeyMaterialFormat>
The key block format of a wrapped key.
sourcepub fn key_material(&self) -> Option<&str>
pub fn key_material(&self) -> Option<&str>
Parameter information for generating a wrapped key using TR-31 or TR-34 standard.
source§impl WrappedKey
impl WrappedKey
sourcepub fn builder() -> WrappedKeyBuilder
pub fn builder() -> WrappedKeyBuilder
Creates a new builder-style object to manufacture WrappedKey
.
Trait Implementations§
source§impl Clone for WrappedKey
impl Clone for WrappedKey
source§fn clone(&self) -> WrappedKey
fn clone(&self) -> WrappedKey
Returns a copy 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 WrappedKey
impl Debug for WrappedKey
source§impl PartialEq for WrappedKey
impl PartialEq for WrappedKey
source§fn eq(&self, other: &WrappedKey) -> bool
fn eq(&self, other: &WrappedKey) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for WrappedKey
Auto Trait Implementations§
impl RefUnwindSafe for WrappedKey
impl Send for WrappedKey
impl Sync for WrappedKey
impl Unpin for WrappedKey
impl UnwindSafe for WrappedKey
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