Struct rusoto_kms::EncryptResponse[][src]

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

Fields

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

The ID of the key used during encryption.

Trait Implementations

impl Default for EncryptResponse
[src]

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

impl Debug for EncryptResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for EncryptResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for EncryptResponse
[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