Struct aws_sdk_amp::output::CreateWorkspaceOutput
source · [−]#[non_exhaustive]pub struct CreateWorkspaceOutput {
pub workspace_id: Option<String>,
pub arn: Option<String>,
pub status: Option<WorkspaceStatus>,
pub tags: Option<HashMap<String, String>>,
}
Expand description
Represents the output of a CreateWorkspace operation.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.workspace_id: Option<String>
The generated ID of the workspace that was just created.
arn: Option<String>
The ARN of the workspace that was just created.
status: Option<WorkspaceStatus>
The status of the workspace that was just created (usually CREATING).
The tags of this workspace.
Implementations
The generated ID of the workspace that was just created.
The status of the workspace that was just created (usually CREATING).
The tags of this workspace.
Creates a new builder-style object to manufacture CreateWorkspaceOutput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CreateWorkspaceOutput
impl Send for CreateWorkspaceOutput
impl Sync for CreateWorkspaceOutput
impl Unpin for CreateWorkspaceOutput
impl UnwindSafe for CreateWorkspaceOutput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more