Struct aws_sdk_workspaces::client::fluent_builders::RestoreWorkspace
source · [−]pub struct RestoreWorkspace { /* private fields */ }Expand description
Fluent builder constructing a request to RestoreWorkspace.
Restores the specified WorkSpace to its last known healthy state.
You cannot restore a WorkSpace unless its state is AVAILABLE, ERROR, UNHEALTHY, or STOPPED.
Restoring a WorkSpace is a potentially destructive action that can result in the loss of data. For more information, see Restore a WorkSpace.
This operation is asynchronous and returns before the WorkSpace is completely restored.
Implementations
sourceimpl RestoreWorkspace
impl RestoreWorkspace
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<RestoreWorkspace, AwsResponseRetryClassifier>, SdkError<RestoreWorkspaceError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<RestoreWorkspace, AwsResponseRetryClassifier>, SdkError<RestoreWorkspaceError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<RestoreWorkspaceOutput, SdkError<RestoreWorkspaceError>>
pub async fn send(
self
) -> Result<RestoreWorkspaceOutput, SdkError<RestoreWorkspaceError>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn workspace_id(self, input: impl Into<String>) -> Self
pub fn workspace_id(self, input: impl Into<String>) -> Self
The identifier of the WorkSpace.
sourcepub fn set_workspace_id(self, input: Option<String>) -> Self
pub fn set_workspace_id(self, input: Option<String>) -> Self
The identifier of the WorkSpace.
Trait Implementations
sourceimpl Clone for RestoreWorkspace
impl Clone for RestoreWorkspace
sourcefn clone(&self) -> RestoreWorkspace
fn clone(&self) -> RestoreWorkspace
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more