Struct rusoto_kms::ReEncryptResponse [] [src]

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

Fields

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

Unique identifier of the CMK used to reencrypt the data.

Unique identifier of the CMK used to originally encrypt the data.

Trait Implementations

impl Default for ReEncryptResponse
[src]

[src]

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

impl Debug for ReEncryptResponse
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ReEncryptResponse
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations