Struct rusoto_kms::DecryptRequest [] [src]

pub struct DecryptRequest {
    pub ciphertext_blob: Vec<u8>,
    pub encryption_context: Option<HashMap<String, String>>,
    pub grant_tokens: Option<Vec<String>>,
}

Fields

Ciphertext to be decrypted. The blob includes metadata.

The encryption context. If this was specified in the Encrypt function, it must be specified here or the decryption operation will fail. For more information, see Encryption Context.

A list of grant tokens.

For more information, see Grant Tokens in the AWS Key Management Service Developer Guide.

Trait Implementations

impl Default for DecryptRequest
[src]

[src]

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

impl Debug for DecryptRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DecryptRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations