Struct rusoto_opsworks::TemporaryCredential [] [src]

pub struct TemporaryCredential {
    pub instance_id: Option<String>,
    pub password: Option<String>,
    pub username: Option<String>,
    pub valid_for_in_minutes: Option<i64>,
}

Contains the data needed by RDP clients such as the Microsoft Remote Desktop Connection to log in to the instance.

Fields

The instance's AWS OpsWorks Stacks ID.

The password.

The user name.

The length of time (in minutes) that the grant is valid. When the grant expires, at the end of this period, the user will no longer be able to use the credentials to log in. If they are logged in at the time, they will be automatically logged out.

Trait Implementations

impl Default for TemporaryCredential
[src]

[src]

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

impl Debug for TemporaryCredential
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for TemporaryCredential
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations