Struct rusoto_kms::DecryptResponse[][src]

pub struct DecryptResponse {
    pub key_id: Option<String>,
    pub plaintext: Option<Vec<u8>>,
}

Fields

ARN of the key used to perform the decryption. This value is returned if no errors are encountered during the operation.

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

Trait Implementations

impl Default for DecryptResponse
[src]

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

impl Debug for DecryptResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for DecryptResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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