Struct rusoto_workspaces::WorkspaceConnectionStatus [] [src]

pub struct WorkspaceConnectionStatus {
    pub connection_state: Option<String>,
    pub connection_state_check_timestamp: Option<f64>,
    pub last_known_user_connection_timestamp: Option<f64>,
    pub workspace_id: Option<String>,
}

Describes the connection status of a WorkSpace.

Fields

The connection state of the WorkSpace. The connection state is unknown if the WorkSpace is stopped.

The timestamp of the connection state check.

The timestamp of the last known user connection.

The ID of the WorkSpace.

Trait Implementations

impl Default for WorkspaceConnectionStatus
[src]

[src]

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

impl Debug for WorkspaceConnectionStatus
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for WorkspaceConnectionStatus
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations