#[non_exhaustive]pub struct CreateWorkspaceOutput {
pub workspace_id: String,
pub arn: String,
pub status: Option<WorkspaceStatus>,
pub tags: Option<HashMap<String, String>>,
/* private fields */
}
Expand description
Represents the output of a CreateWorkspace operation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.workspace_id: String
The generated ID of the workspace that was just created.
arn: 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§
source§impl CreateWorkspaceOutput
impl CreateWorkspaceOutput
sourcepub fn workspace_id(&self) -> &str
pub fn workspace_id(&self) -> &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 for CreateWorkspaceOutput
impl PartialEq 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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.