Struct aws_sdk_kms::operation::generate_data_key_without_plaintext::GenerateDataKeyWithoutPlaintextOutput
source · #[non_exhaustive]pub struct GenerateDataKeyWithoutPlaintextOutput {
pub ciphertext_blob: Option<Blob>,
pub key_id: Option<String>,
/* private fields */
}
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.ciphertext_blob: Option<Blob>
The encrypted data key. When you use the HTTP API or the Amazon Web Services CLI, the value is Base64-encoded. Otherwise, it is not Base64-encoded.
key_id: Option<String>
The Amazon Resource Name (key ARN) of the KMS key that encrypted the data key.
Implementations§
source§impl GenerateDataKeyWithoutPlaintextOutput
impl GenerateDataKeyWithoutPlaintextOutput
sourcepub fn ciphertext_blob(&self) -> Option<&Blob>
pub fn ciphertext_blob(&self) -> Option<&Blob>
The encrypted data key. When you use the HTTP API or the Amazon Web Services CLI, the value is Base64-encoded. Otherwise, it is not Base64-encoded.
source§impl GenerateDataKeyWithoutPlaintextOutput
impl GenerateDataKeyWithoutPlaintextOutput
sourcepub fn builder() -> GenerateDataKeyWithoutPlaintextOutputBuilder
pub fn builder() -> GenerateDataKeyWithoutPlaintextOutputBuilder
Creates a new builder-style object to manufacture GenerateDataKeyWithoutPlaintextOutput
.
Trait Implementations§
source§impl Clone for GenerateDataKeyWithoutPlaintextOutput
impl Clone for GenerateDataKeyWithoutPlaintextOutput
source§fn clone(&self) -> GenerateDataKeyWithoutPlaintextOutput
fn clone(&self) -> GenerateDataKeyWithoutPlaintextOutput
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 PartialEq for GenerateDataKeyWithoutPlaintextOutput
impl PartialEq for GenerateDataKeyWithoutPlaintextOutput
source§fn eq(&self, other: &GenerateDataKeyWithoutPlaintextOutput) -> bool
fn eq(&self, other: &GenerateDataKeyWithoutPlaintextOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GenerateDataKeyWithoutPlaintextOutput
impl RequestId for GenerateDataKeyWithoutPlaintextOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for GenerateDataKeyWithoutPlaintextOutput
Auto Trait Implementations§
impl Freeze for GenerateDataKeyWithoutPlaintextOutput
impl RefUnwindSafe for GenerateDataKeyWithoutPlaintextOutput
impl Send for GenerateDataKeyWithoutPlaintextOutput
impl Sync for GenerateDataKeyWithoutPlaintextOutput
impl Unpin for GenerateDataKeyWithoutPlaintextOutput
impl UnwindSafe for GenerateDataKeyWithoutPlaintextOutput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.