Struct rusoto_workspaces::FailedWorkspaceChangeRequest[][src]

pub struct FailedWorkspaceChangeRequest {
    pub error_code: Option<String>,
    pub error_message: Option<String>,
    pub workspace_id: Option<String>,
}

Information about a WorkSpace that could not be rebooted (RebootWorkspaces), rebuilt (RebuildWorkspaces), terminated (TerminateWorkspaces), started (StartWorkspaces), or stopped (StopWorkspaces).

Fields

The error code.

The textual error message.

The identifier of the WorkSpace.

Trait Implementations

impl Default for FailedWorkspaceChangeRequest
[src]

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

impl Debug for FailedWorkspaceChangeRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for FailedWorkspaceChangeRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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