Struct rusoto_ec2::GetPasswordDataResult[][src]

pub struct GetPasswordDataResult {
    pub instance_id: Option<String>,
    pub password_data: Option<String>,
    pub timestamp: Option<String>,
}

Contains the output of GetPasswordData.

Fields

The ID of the Windows instance.

The password of the instance. Returns an empty string if the password is not available.

The time the data was last updated.

Trait Implementations

impl Default for GetPasswordDataResult
[src]

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

impl Debug for GetPasswordDataResult
[src]

Formats the value using the given formatter. Read more

impl Clone for GetPasswordDataResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetPasswordDataResult
[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