Struct rusoto_workspaces::CreateWorkspacesResult[][src]

pub struct CreateWorkspacesResult {
    pub failed_requests: Option<Vec<FailedCreateWorkspaceRequest>>,
    pub pending_requests: Option<Vec<Workspace>>,
}

Fields

Information about the WorkSpaces that could not be created.

Information about the WorkSpaces that were created.

Because this operation is asynchronous, the identifier returned is not immediately available for use with other operations. For example, if you call DescribeWorkspaces before the WorkSpace is created, the information returned can be incomplete.

Trait Implementations

impl Default for CreateWorkspacesResult
[src]

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

impl Debug for CreateWorkspacesResult
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateWorkspacesResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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