#[non_exhaustive]pub struct FailedWorkspaceChangeRequest { /* private fields */ }Expand description
Describes a WorkSpace that could not be rebooted. (RebootWorkspaces), rebuilt (RebuildWorkspaces), restored (RestoreWorkspace), terminated (TerminateWorkspaces), started (StartWorkspaces), or stopped (StopWorkspaces).
Implementations
sourceimpl FailedWorkspaceChangeRequest
impl FailedWorkspaceChangeRequest
sourcepub fn workspace_id(&self) -> Option<&str>
pub fn workspace_id(&self) -> Option<&str>
The identifier of the WorkSpace.
sourcepub fn error_code(&self) -> Option<&str>
pub fn error_code(&self) -> Option<&str>
The error code that is returned if the WorkSpace cannot be rebooted.
sourcepub fn error_message(&self) -> Option<&str>
pub fn error_message(&self) -> Option<&str>
The text of the error message that is returned if the WorkSpace cannot be rebooted.
sourceimpl FailedWorkspaceChangeRequest
impl FailedWorkspaceChangeRequest
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture FailedWorkspaceChangeRequest.
Trait Implementations
sourceimpl Clone for FailedWorkspaceChangeRequest
impl Clone for FailedWorkspaceChangeRequest
sourcefn clone(&self) -> FailedWorkspaceChangeRequest
fn clone(&self) -> FailedWorkspaceChangeRequest
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for FailedWorkspaceChangeRequest
impl Debug for FailedWorkspaceChangeRequest
sourceimpl PartialEq<FailedWorkspaceChangeRequest> for FailedWorkspaceChangeRequest
impl PartialEq<FailedWorkspaceChangeRequest> for FailedWorkspaceChangeRequest
sourcefn eq(&self, other: &FailedWorkspaceChangeRequest) -> bool
fn eq(&self, other: &FailedWorkspaceChangeRequest) -> bool
impl StructuralPartialEq for FailedWorkspaceChangeRequest
Auto Trait Implementations
impl RefUnwindSafe for FailedWorkspaceChangeRequest
impl Send for FailedWorkspaceChangeRequest
impl Sync for FailedWorkspaceChangeRequest
impl Unpin for FailedWorkspaceChangeRequest
impl UnwindSafe for FailedWorkspaceChangeRequest
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more