Struct rusoto_lightsail::CreateKeyPairResult[][src]

pub struct CreateKeyPairResult {
    pub key_pair: Option<KeyPair>,
    pub operation: Option<Operation>,
    pub private_key_base_64: Option<String>,
    pub public_key_base_64: Option<String>,
}

Fields

An array of key-value pairs containing information about the new key pair you just created.

An array of key-value pairs containing information about the results of your create key pair request.

A base64-encoded RSA private key.

A base64-encoded public key of the ssh-rsa type.

Trait Implementations

impl Default for CreateKeyPairResult
[src]

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

impl Debug for CreateKeyPairResult
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateKeyPairResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateKeyPairResult
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations