Struct rusoto_kms::GenerateDataKeyWithoutPlaintextResponse[][src]

pub struct GenerateDataKeyWithoutPlaintextResponse {
    pub ciphertext_blob: Option<Vec<u8>>,
    pub key_id: Option<String>,
}

Fields

The encrypted data encryption key. When you use the HTTP API or the AWS CLI, the value is Base64-encoded. Otherwise, it is not encoded.

The identifier of the CMK under which the data encryption key was generated and encrypted.

Trait Implementations

impl Default for GenerateDataKeyWithoutPlaintextResponse
[src]

Returns the "default value" for a type. Read more

impl Debug for GenerateDataKeyWithoutPlaintextResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for GenerateDataKeyWithoutPlaintextResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GenerateDataKeyWithoutPlaintextResponse
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations