#[non_exhaustive]pub struct CreateWorkspaceOutput { /* private fields */ }
Expand description
Represents the output of a CreateWorkspace operation.
Implementations§
source§impl CreateWorkspaceOutput
impl CreateWorkspaceOutput
sourcepub fn workspace_id(&self) -> Option<&str>
pub fn workspace_id(&self) -> Option<&str>
The generated ID of the workspace that was just created.
sourcepub fn status(&self) -> Option<&WorkspaceStatus>
pub fn status(&self) -> Option<&WorkspaceStatus>
The status of the workspace that was just created (usually CREATING).
The tags of this workspace.
source§impl CreateWorkspaceOutput
impl CreateWorkspaceOutput
sourcepub fn builder() -> CreateWorkspaceOutputBuilder
pub fn builder() -> CreateWorkspaceOutputBuilder
Creates a new builder-style object to manufacture CreateWorkspaceOutput
.
Trait Implementations§
source§impl Clone for CreateWorkspaceOutput
impl Clone for CreateWorkspaceOutput
source§fn clone(&self) -> CreateWorkspaceOutput
fn clone(&self) -> CreateWorkspaceOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CreateWorkspaceOutput
impl Debug for CreateWorkspaceOutput
source§impl PartialEq<CreateWorkspaceOutput> for CreateWorkspaceOutput
impl PartialEq<CreateWorkspaceOutput> for CreateWorkspaceOutput
source§fn eq(&self, other: &CreateWorkspaceOutput) -> bool
fn eq(&self, other: &CreateWorkspaceOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CreateWorkspaceOutput
impl RequestId for CreateWorkspaceOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for CreateWorkspaceOutput
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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more