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. This value may not be returned if the customer master key is not available or if you didn't have permission to use it.

Trait Implementations

impl Default for DecryptResponse
[src]

[src]

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

impl Debug for DecryptResponse
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DecryptResponse
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations