[][src]Struct rusoto_kms::GenerateDataKeyPairResponse

pub struct GenerateDataKeyPairResponse {
    pub key_id: Option<String>,
    pub key_pair_spec: Option<String>,
    pub private_key_ciphertext_blob: Option<Bytes>,
    pub private_key_plaintext: Option<Bytes>,
    pub public_key: Option<Bytes>,
}

Fields

key_id: Option<String>

The Amazon Resource Name (key ARN) of the CMK that encrypted the private key.

key_pair_spec: Option<String>

The type of data key pair that was generated.

private_key_ciphertext_blob: Option<Bytes>

The encrypted copy of the private key. When you use the HTTP API or the AWS CLI, the value is Base64-encoded. Otherwise, it is not Base64-encoded.

private_key_plaintext: Option<Bytes>

The plaintext copy of the private key. When you use the HTTP API or the AWS CLI, the value is Base64-encoded. Otherwise, it is not Base64-encoded.

public_key: Option<Bytes>

The public key (in plaintext).

Trait Implementations

impl Clone for GenerateDataKeyPairResponse[src]

impl Debug for GenerateDataKeyPairResponse[src]

impl Default for GenerateDataKeyPairResponse[src]

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

impl PartialEq<GenerateDataKeyPairResponse> for GenerateDataKeyPairResponse[src]

impl StructuralPartialEq for GenerateDataKeyPairResponse[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.