aws_sdk_fsx/client/
start_misconfigured_state_recovery.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`StartMisconfiguredStateRecovery`](crate::operation::start_misconfigured_state_recovery::builders::StartMisconfiguredStateRecoveryFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`client_request_token(impl Into<String>)`](crate::operation::start_misconfigured_state_recovery::builders::StartMisconfiguredStateRecoveryFluentBuilder::client_request_token) / [`set_client_request_token(Option<String>)`](crate::operation::start_misconfigured_state_recovery::builders::StartMisconfiguredStateRecoveryFluentBuilder::set_client_request_token):<br>required: **false**<br><p>(Optional) An idempotency token for resource creation, in a string of up to 63 ASCII characters. This token is automatically filled on your behalf when you use the Command Line Interface (CLI) or an Amazon Web Services SDK.</p><br>
7    ///   - [`file_system_id(impl Into<String>)`](crate::operation::start_misconfigured_state_recovery::builders::StartMisconfiguredStateRecoveryFluentBuilder::file_system_id) / [`set_file_system_id(Option<String>)`](crate::operation::start_misconfigured_state_recovery::builders::StartMisconfiguredStateRecoveryFluentBuilder::set_file_system_id):<br>required: **true**<br><p>The globally unique ID of the file system, assigned by Amazon FSx.</p><br>
8    /// - On success, responds with [`StartMisconfiguredStateRecoveryOutput`](crate::operation::start_misconfigured_state_recovery::StartMisconfiguredStateRecoveryOutput) with field(s):
9    ///   - [`file_system(Option<FileSystem>)`](crate::operation::start_misconfigured_state_recovery::StartMisconfiguredStateRecoveryOutput::file_system): <p>A description of a specific Amazon FSx file system.</p>
10    /// - On failure, responds with [`SdkError<StartMisconfiguredStateRecoveryError>`](crate::operation::start_misconfigured_state_recovery::StartMisconfiguredStateRecoveryError)
11    pub fn start_misconfigured_state_recovery(
12        &self,
13    ) -> crate::operation::start_misconfigured_state_recovery::builders::StartMisconfiguredStateRecoveryFluentBuilder {
14        crate::operation::start_misconfigured_state_recovery::builders::StartMisconfiguredStateRecoveryFluentBuilder::new(self.handle.clone())
15    }
16}