aws_sdk_fsx/operation/
create_file_system_from_backup.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2/// Orchestration and serialization glue logic for `CreateFileSystemFromBackup`.
3#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct CreateFileSystemFromBackup;
6impl CreateFileSystemFromBackup {
7    /// Creates a new `CreateFileSystemFromBackup`
8    pub fn new() -> Self {
9        Self
10    }
11    pub(crate) async fn orchestrate(
12        runtime_plugins: &::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
13        input: crate::operation::create_file_system_from_backup::CreateFileSystemFromBackupInput,
14    ) -> ::std::result::Result<
15        crate::operation::create_file_system_from_backup::CreateFileSystemFromBackupOutput,
16        ::aws_smithy_runtime_api::client::result::SdkError<
17            crate::operation::create_file_system_from_backup::CreateFileSystemFromBackupError,
18            ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
19        >,
20    > {
21        let map_err = |err: ::aws_smithy_runtime_api::client::result::SdkError<
22            ::aws_smithy_runtime_api::client::interceptors::context::Error,
23            ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
24        >| {
25            err.map_service_error(|err| {
26                err.downcast::<crate::operation::create_file_system_from_backup::CreateFileSystemFromBackupError>()
27                    .expect("correct error type")
28            })
29        };
30        let context = Self::orchestrate_with_stop_point(runtime_plugins, input, ::aws_smithy_runtime::client::orchestrator::StopPoint::None)
31            .await
32            .map_err(map_err)?;
33        let output = context.finalize().map_err(map_err)?;
34        ::std::result::Result::Ok(
35            output
36                .downcast::<crate::operation::create_file_system_from_backup::CreateFileSystemFromBackupOutput>()
37                .expect("correct output type"),
38        )
39    }
40
41    pub(crate) async fn orchestrate_with_stop_point(
42        runtime_plugins: &::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
43        input: crate::operation::create_file_system_from_backup::CreateFileSystemFromBackupInput,
44        stop_point: ::aws_smithy_runtime::client::orchestrator::StopPoint,
45    ) -> ::std::result::Result<
46        ::aws_smithy_runtime_api::client::interceptors::context::InterceptorContext,
47        ::aws_smithy_runtime_api::client::result::SdkError<
48            ::aws_smithy_runtime_api::client::interceptors::context::Error,
49            ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
50        >,
51    > {
52        let input = ::aws_smithy_runtime_api::client::interceptors::context::Input::erase(input);
53        use ::tracing::Instrument;
54        ::aws_smithy_runtime::client::orchestrator::invoke_with_stop_point("FSx", "CreateFileSystemFromBackup", input, runtime_plugins, stop_point)
55            // Create a parent span for the entire operation. Includes a random, internal-only,
56            // seven-digit ID for the operation orchestration so that it can be correlated in the logs.
57            .instrument(::tracing::debug_span!(
58                "FSx.CreateFileSystemFromBackup",
59                "rpc.service" = "FSx",
60                "rpc.method" = "CreateFileSystemFromBackup",
61                "sdk_invocation_id" = ::fastrand::u32(1_000_000..10_000_000),
62                "rpc.system" = "aws-api",
63            ))
64            .await
65    }
66
67    pub(crate) fn operation_runtime_plugins(
68        client_runtime_plugins: ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
69        client_config: &crate::config::Config,
70        config_override: ::std::option::Option<crate::config::Builder>,
71    ) -> ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins {
72        let mut runtime_plugins = client_runtime_plugins.with_operation_plugin(Self::new());
73        runtime_plugins = runtime_plugins
74            .with_operation_plugin(crate::client_idempotency_token::IdempotencyTokenRuntimePlugin::new(
75                |token_provider, input| {
76                    let input: &mut crate::operation::create_file_system_from_backup::CreateFileSystemFromBackupInput =
77                        input.downcast_mut().expect("correct type");
78                    if input.client_request_token.is_none() {
79                        input.client_request_token = ::std::option::Option::Some(token_provider.make_idempotency_token());
80                    }
81                },
82            ))
83            .with_client_plugin(crate::auth_plugin::DefaultAuthOptionsPlugin::new(vec![
84                ::aws_runtime::auth::sigv4::SCHEME_ID,
85            ]));
86        if let ::std::option::Option::Some(config_override) = config_override {
87            for plugin in config_override.runtime_plugins.iter().cloned() {
88                runtime_plugins = runtime_plugins.with_operation_plugin(plugin);
89            }
90            runtime_plugins = runtime_plugins.with_operation_plugin(crate::config::ConfigOverrideRuntimePlugin::new(
91                config_override,
92                client_config.config.clone(),
93                &client_config.runtime_components,
94            ));
95        }
96        runtime_plugins
97    }
98}
99impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for CreateFileSystemFromBackup {
100    fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
101        let mut cfg = ::aws_smithy_types::config_bag::Layer::new("CreateFileSystemFromBackup");
102
103        cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
104            CreateFileSystemFromBackupRequestSerializer,
105        ));
106        cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
107            CreateFileSystemFromBackupResponseDeserializer,
108        ));
109
110        cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
111            ::aws_smithy_runtime_api::client::auth::static_resolver::StaticAuthSchemeOptionResolverParams::new(),
112        ));
113
114        cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::SensitiveOutput);
115        cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new(
116            "CreateFileSystemFromBackup",
117            "FSx",
118        ));
119        let mut signing_options = ::aws_runtime::auth::SigningOptions::default();
120        signing_options.double_uri_encode = true;
121        signing_options.content_sha256_header = false;
122        signing_options.normalize_uri_path = true;
123        signing_options.payload_override = None;
124
125        cfg.store_put(::aws_runtime::auth::SigV4OperationSigningConfig {
126            signing_options,
127            ..::std::default::Default::default()
128        });
129
130        ::std::option::Option::Some(cfg.freeze())
131    }
132
133    fn runtime_components(
134        &self,
135        _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
136    ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
137        #[allow(unused_mut)]
138        let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("CreateFileSystemFromBackup")
139            .with_interceptor(::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default())
140            .with_interceptor(CreateFileSystemFromBackupEndpointParamsInterceptor)
141            .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
142                crate::operation::create_file_system_from_backup::CreateFileSystemFromBackupError,
143            >::new())
144            .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
145                crate::operation::create_file_system_from_backup::CreateFileSystemFromBackupError,
146            >::new())
147            .with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<
148                crate::operation::create_file_system_from_backup::CreateFileSystemFromBackupError,
149            >::new());
150
151        ::std::borrow::Cow::Owned(rcb)
152    }
153}
154
155#[derive(Debug)]
156struct CreateFileSystemFromBackupResponseDeserializer;
157impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for CreateFileSystemFromBackupResponseDeserializer {
158    fn deserialize_nonstreaming(
159        &self,
160        response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
161    ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
162        let (success, status) = (response.status().is_success(), response.status().as_u16());
163        let headers = response.headers();
164        let body = response.body().bytes().expect("body loaded");
165        #[allow(unused_mut)]
166        let mut force_error = false;
167        ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
168        let parse_result = if !success && status != 200 || force_error {
169            crate::protocol_serde::shape_create_file_system_from_backup::de_create_file_system_from_backup_http_error(status, headers, body)
170        } else {
171            crate::protocol_serde::shape_create_file_system_from_backup::de_create_file_system_from_backup_http_response(status, headers, body)
172        };
173        crate::protocol_serde::type_erase_result(parse_result)
174    }
175}
176#[derive(Debug)]
177struct CreateFileSystemFromBackupRequestSerializer;
178impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for CreateFileSystemFromBackupRequestSerializer {
179    #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
180    fn serialize_input(
181        &self,
182        input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
183        _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
184    ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
185        let input = input
186            .downcast::<crate::operation::create_file_system_from_backup::CreateFileSystemFromBackupInput>()
187            .expect("correct type");
188        let _header_serialization_settings = _cfg
189            .load::<crate::serialization_settings::HeaderSerializationSettings>()
190            .cloned()
191            .unwrap_or_default();
192        let mut request_builder = {
193            fn uri_base(
194                _input: &crate::operation::create_file_system_from_backup::CreateFileSystemFromBackupInput,
195                output: &mut ::std::string::String,
196            ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
197                use ::std::fmt::Write as _;
198                ::std::write!(output, "/").expect("formatting should succeed");
199                ::std::result::Result::Ok(())
200            }
201            #[allow(clippy::unnecessary_wraps)]
202            fn update_http_builder(
203                input: &crate::operation::create_file_system_from_backup::CreateFileSystemFromBackupInput,
204                builder: ::http::request::Builder,
205            ) -> ::std::result::Result<::http::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
206                let mut uri = ::std::string::String::new();
207                uri_base(input, &mut uri)?;
208                ::std::result::Result::Ok(builder.method("POST").uri(uri))
209            }
210            let mut builder = update_http_builder(&input, ::http::request::Builder::new())?;
211            builder = _header_serialization_settings.set_default_header(builder, ::http::header::CONTENT_TYPE, "application/x-amz-json-1.1");
212            builder = _header_serialization_settings.set_default_header(
213                builder,
214                ::http::header::HeaderName::from_static("x-amz-target"),
215                "AWSSimbaAPIService_v20180301.CreateFileSystemFromBackup",
216            );
217            builder
218        };
219        let body = ::aws_smithy_types::body::SdkBody::from(
220            crate::protocol_serde::shape_create_file_system_from_backup::ser_create_file_system_from_backup_input(&input)?,
221        );
222        if let Some(content_length) = body.content_length() {
223            let content_length = content_length.to_string();
224            request_builder = _header_serialization_settings.set_default_header(request_builder, ::http::header::CONTENT_LENGTH, &content_length);
225        }
226        ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
227    }
228}
229#[derive(Debug)]
230struct CreateFileSystemFromBackupEndpointParamsInterceptor;
231
232impl ::aws_smithy_runtime_api::client::interceptors::Intercept for CreateFileSystemFromBackupEndpointParamsInterceptor {
233    fn name(&self) -> &'static str {
234        "CreateFileSystemFromBackupEndpointParamsInterceptor"
235    }
236
237    fn read_before_execution(
238        &self,
239        context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
240            '_,
241            ::aws_smithy_runtime_api::client::interceptors::context::Input,
242            ::aws_smithy_runtime_api::client::interceptors::context::Output,
243            ::aws_smithy_runtime_api::client::interceptors::context::Error,
244        >,
245        cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
246    ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
247        let _input = context
248            .input()
249            .downcast_ref::<CreateFileSystemFromBackupInput>()
250            .ok_or("failed to downcast to CreateFileSystemFromBackupInput")?;
251
252        let params = crate::config::endpoint::Params::builder()
253            .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
254            .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
255            .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
256            .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
257            .build()
258            .map_err(|err| {
259                ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
260            })?;
261        cfg.interceptor_state()
262            .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
263        ::std::result::Result::Ok(())
264    }
265}
266
267// The get_* functions below are generated from JMESPath expressions in the
268// operationContextParams trait. They target the operation's input shape.
269
270/// Error type for the `CreateFileSystemFromBackupError` operation.
271#[non_exhaustive]
272#[derive(::std::fmt::Debug)]
273pub enum CreateFileSystemFromBackupError {
274    /// <p>An Active Directory error.</p>
275    ActiveDirectoryError(crate::types::error::ActiveDirectoryError),
276    /// <p>No Amazon FSx backups were found based upon the supplied parameters.</p>
277    BackupNotFound(crate::types::error::BackupNotFound),
278    /// <p>A generic error indicating a failure with a client request.</p>
279    BadRequest(crate::types::error::BadRequest),
280    /// <p>The error returned when a second request is received with the same client request token but different parameters settings. A client request token should always uniquely identify a single request.</p>
281    IncompatibleParameterError(crate::types::error::IncompatibleParameterError),
282    /// <p>A generic error indicating a server-side failure.</p>
283    InternalServerError(crate::types::error::InternalServerError),
284    /// <p>One or more network settings specified in the request are invalid.</p>
285    InvalidNetworkSettings(crate::types::error::InvalidNetworkSettings),
286    /// <p>An invalid value for <code>PerUnitStorageThroughput</code> was provided. Please create your file system again, using a valid value.</p>
287    InvalidPerUnitStorageThroughput(crate::types::error::InvalidPerUnitStorageThroughput),
288    /// <p>A file system configuration is required for this operation.</p>
289    MissingFileSystemConfiguration(crate::types::error::MissingFileSystemConfiguration),
290    /// <p>An error indicating that a particular service limit was exceeded. You can increase some service limits by contacting Amazon Web ServicesSupport.</p>
291    ServiceLimitExceeded(crate::types::error::ServiceLimitExceeded),
292    /// An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
293    #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
294    variable wildcard pattern and check `.code()`:
295     \
296    &nbsp;&nbsp;&nbsp;`err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
297     \
298    See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-CreateFileSystemFromBackupError) for what information is available for the error.")]
299    Unhandled(crate::error::sealed_unhandled::Unhandled),
300}
301impl CreateFileSystemFromBackupError {
302    /// Creates the `CreateFileSystemFromBackupError::Unhandled` variant from any error type.
303    pub fn unhandled(
304        err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
305    ) -> Self {
306        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
307            source: err.into(),
308            meta: ::std::default::Default::default(),
309        })
310    }
311
312    /// Creates the `CreateFileSystemFromBackupError::Unhandled` variant from an [`ErrorMetadata`](::aws_smithy_types::error::ErrorMetadata).
313    pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
314        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
315            source: err.clone().into(),
316            meta: err,
317        })
318    }
319    ///
320    /// Returns error metadata, which includes the error code, message,
321    /// request ID, and potentially additional information.
322    ///
323    pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
324        match self {
325            Self::ActiveDirectoryError(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
326            Self::BackupNotFound(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
327            Self::BadRequest(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
328            Self::IncompatibleParameterError(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
329            Self::InternalServerError(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
330            Self::InvalidNetworkSettings(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
331            Self::InvalidPerUnitStorageThroughput(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
332            Self::MissingFileSystemConfiguration(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
333            Self::ServiceLimitExceeded(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
334            Self::Unhandled(e) => &e.meta,
335        }
336    }
337    /// Returns `true` if the error kind is `CreateFileSystemFromBackupError::ActiveDirectoryError`.
338    pub fn is_active_directory_error(&self) -> bool {
339        matches!(self, Self::ActiveDirectoryError(_))
340    }
341    /// Returns `true` if the error kind is `CreateFileSystemFromBackupError::BackupNotFound`.
342    pub fn is_backup_not_found(&self) -> bool {
343        matches!(self, Self::BackupNotFound(_))
344    }
345    /// Returns `true` if the error kind is `CreateFileSystemFromBackupError::BadRequest`.
346    pub fn is_bad_request(&self) -> bool {
347        matches!(self, Self::BadRequest(_))
348    }
349    /// Returns `true` if the error kind is `CreateFileSystemFromBackupError::IncompatibleParameterError`.
350    pub fn is_incompatible_parameter_error(&self) -> bool {
351        matches!(self, Self::IncompatibleParameterError(_))
352    }
353    /// Returns `true` if the error kind is `CreateFileSystemFromBackupError::InternalServerError`.
354    pub fn is_internal_server_error(&self) -> bool {
355        matches!(self, Self::InternalServerError(_))
356    }
357    /// Returns `true` if the error kind is `CreateFileSystemFromBackupError::InvalidNetworkSettings`.
358    pub fn is_invalid_network_settings(&self) -> bool {
359        matches!(self, Self::InvalidNetworkSettings(_))
360    }
361    /// Returns `true` if the error kind is `CreateFileSystemFromBackupError::InvalidPerUnitStorageThroughput`.
362    pub fn is_invalid_per_unit_storage_throughput(&self) -> bool {
363        matches!(self, Self::InvalidPerUnitStorageThroughput(_))
364    }
365    /// Returns `true` if the error kind is `CreateFileSystemFromBackupError::MissingFileSystemConfiguration`.
366    pub fn is_missing_file_system_configuration(&self) -> bool {
367        matches!(self, Self::MissingFileSystemConfiguration(_))
368    }
369    /// Returns `true` if the error kind is `CreateFileSystemFromBackupError::ServiceLimitExceeded`.
370    pub fn is_service_limit_exceeded(&self) -> bool {
371        matches!(self, Self::ServiceLimitExceeded(_))
372    }
373}
374impl ::std::error::Error for CreateFileSystemFromBackupError {
375    fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
376        match self {
377            Self::ActiveDirectoryError(_inner) => ::std::option::Option::Some(_inner),
378            Self::BackupNotFound(_inner) => ::std::option::Option::Some(_inner),
379            Self::BadRequest(_inner) => ::std::option::Option::Some(_inner),
380            Self::IncompatibleParameterError(_inner) => ::std::option::Option::Some(_inner),
381            Self::InternalServerError(_inner) => ::std::option::Option::Some(_inner),
382            Self::InvalidNetworkSettings(_inner) => ::std::option::Option::Some(_inner),
383            Self::InvalidPerUnitStorageThroughput(_inner) => ::std::option::Option::Some(_inner),
384            Self::MissingFileSystemConfiguration(_inner) => ::std::option::Option::Some(_inner),
385            Self::ServiceLimitExceeded(_inner) => ::std::option::Option::Some(_inner),
386            Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
387        }
388    }
389}
390impl ::std::fmt::Display for CreateFileSystemFromBackupError {
391    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
392        match self {
393            Self::ActiveDirectoryError(_inner) => _inner.fmt(f),
394            Self::BackupNotFound(_inner) => _inner.fmt(f),
395            Self::BadRequest(_inner) => _inner.fmt(f),
396            Self::IncompatibleParameterError(_inner) => _inner.fmt(f),
397            Self::InternalServerError(_inner) => _inner.fmt(f),
398            Self::InvalidNetworkSettings(_inner) => _inner.fmt(f),
399            Self::InvalidPerUnitStorageThroughput(_inner) => _inner.fmt(f),
400            Self::MissingFileSystemConfiguration(_inner) => _inner.fmt(f),
401            Self::ServiceLimitExceeded(_inner) => _inner.fmt(f),
402            Self::Unhandled(_inner) => {
403                if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
404                    write!(f, "unhandled error ({code})")
405                } else {
406                    f.write_str("unhandled error")
407                }
408            }
409        }
410    }
411}
412impl ::aws_smithy_types::retry::ProvideErrorKind for CreateFileSystemFromBackupError {
413    fn code(&self) -> ::std::option::Option<&str> {
414        ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
415    }
416    fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
417        ::std::option::Option::None
418    }
419}
420impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for CreateFileSystemFromBackupError {
421    fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
422        match self {
423            Self::ActiveDirectoryError(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
424            Self::BackupNotFound(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
425            Self::BadRequest(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
426            Self::IncompatibleParameterError(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
427            Self::InternalServerError(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
428            Self::InvalidNetworkSettings(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
429            Self::InvalidPerUnitStorageThroughput(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
430            Self::MissingFileSystemConfiguration(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
431            Self::ServiceLimitExceeded(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
432            Self::Unhandled(_inner) => &_inner.meta,
433        }
434    }
435}
436impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for CreateFileSystemFromBackupError {
437    fn create_unhandled_error(
438        source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
439        meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
440    ) -> Self {
441        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
442            source,
443            meta: meta.unwrap_or_default(),
444        })
445    }
446}
447impl ::aws_types::request_id::RequestId for crate::operation::create_file_system_from_backup::CreateFileSystemFromBackupError {
448    fn request_id(&self) -> Option<&str> {
449        self.meta().request_id()
450    }
451}
452
453pub use crate::operation::create_file_system_from_backup::_create_file_system_from_backup_output::CreateFileSystemFromBackupOutput;
454
455pub use crate::operation::create_file_system_from_backup::_create_file_system_from_backup_input::CreateFileSystemFromBackupInput;
456
457mod _create_file_system_from_backup_input;
458
459mod _create_file_system_from_backup_output;
460
461/// Builders
462pub mod builders;