[][src]Struct rusoto_kms::ReEncryptResponse

pub struct ReEncryptResponse {
    pub ciphertext_blob: Option<Bytes>,
    pub destination_encryption_algorithm: Option<String>,
    pub key_id: Option<String>,
    pub source_encryption_algorithm: Option<String>,
    pub source_key_id: Option<String>,
}

Fields

ciphertext_blob: Option<Bytes>

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

destination_encryption_algorithm: Option<String>

The encryption algorithm that was used to reencrypt the data.

key_id: Option<String>

The Amazon Resource Name (key ARN) of the CMK that was used to reencrypt the data.

source_encryption_algorithm: Option<String>

The encryption algorithm that was used to decrypt the ciphertext before it was reencrypted.

source_key_id: Option<String>

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

Trait Implementations

impl Clone for ReEncryptResponse[src]

impl Debug for ReEncryptResponse[src]

impl Default for ReEncryptResponse[src]

impl<'de> Deserialize<'de> for ReEncryptResponse[src]

impl PartialEq<ReEncryptResponse> for ReEncryptResponse[src]

impl StructuralPartialEq for ReEncryptResponse[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.