1#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct CreateVolumeFromBackup;
6impl CreateVolumeFromBackup {
7 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_volume_from_backup::CreateVolumeFromBackupInput,
14 ) -> ::std::result::Result<
15 crate::operation::create_volume_from_backup::CreateVolumeFromBackupOutput,
16 ::aws_smithy_runtime_api::client::result::SdkError<
17 crate::operation::create_volume_from_backup::CreateVolumeFromBackupError,
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_volume_from_backup::CreateVolumeFromBackupError>()
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_volume_from_backup::CreateVolumeFromBackupOutput>()
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_volume_from_backup::CreateVolumeFromBackupInput,
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", "CreateVolumeFromBackup", input, runtime_plugins, stop_point)
55 .instrument(::tracing::debug_span!(
58 "FSx.CreateVolumeFromBackup",
59 "rpc.service" = "FSx",
60 "rpc.method" = "CreateVolumeFromBackup",
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.with_operation_plugin(crate::client_idempotency_token::IdempotencyTokenRuntimePlugin::new(
74 |token_provider, input| {
75 let input: &mut crate::operation::create_volume_from_backup::CreateVolumeFromBackupInput =
76 input.downcast_mut().expect("correct type");
77 if input.client_request_token.is_none() {
78 input.client_request_token = ::std::option::Option::Some(token_provider.make_idempotency_token());
79 }
80 },
81 ));
82 if let ::std::option::Option::Some(config_override) = config_override {
83 for plugin in config_override.runtime_plugins.iter().cloned() {
84 runtime_plugins = runtime_plugins.with_operation_plugin(plugin);
85 }
86 runtime_plugins = runtime_plugins.with_operation_plugin(crate::config::ConfigOverrideRuntimePlugin::new(
87 config_override,
88 client_config.config.clone(),
89 &client_config.runtime_components,
90 ));
91 }
92 runtime_plugins
93 }
94}
95impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for CreateVolumeFromBackup {
96 fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
97 let mut cfg = ::aws_smithy_types::config_bag::Layer::new("CreateVolumeFromBackup");
98
99 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
100 CreateVolumeFromBackupRequestSerializer,
101 ));
102 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
103 CreateVolumeFromBackupResponseDeserializer,
104 ));
105
106 cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
107 crate::config::auth::Params::builder()
108 .operation_name("CreateVolumeFromBackup")
109 .build()
110 .expect("required fields set"),
111 ));
112
113 cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::SensitiveOutput);
114 cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new(
115 "CreateVolumeFromBackup",
116 "FSx",
117 ));
118 let mut signing_options = ::aws_runtime::auth::SigningOptions::default();
119 signing_options.double_uri_encode = true;
120 signing_options.content_sha256_header = false;
121 signing_options.normalize_uri_path = true;
122 signing_options.payload_override = None;
123
124 cfg.store_put(::aws_runtime::auth::SigV4OperationSigningConfig {
125 signing_options,
126 ..::std::default::Default::default()
127 });
128
129 ::std::option::Option::Some(cfg.freeze())
130 }
131
132 fn runtime_components(
133 &self,
134 _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
135 ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
136 #[allow(unused_mut)]
137 let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("CreateVolumeFromBackup")
138 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
139 CreateVolumeFromBackupTelemetryInputCaptureInterceptor,
140 ))
141 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
142 ::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default(),
143 ))
144 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
145 CreateVolumeFromBackupEndpointParamsInterceptor,
146 ))
147 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
148 crate::operation::create_volume_from_backup::CreateVolumeFromBackupError,
149 >::new())
150 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
151 crate::operation::create_volume_from_backup::CreateVolumeFromBackupError,
152 >::new())
153 .with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<
154 crate::operation::create_volume_from_backup::CreateVolumeFromBackupError,
155 >::new());
156
157 ::std::borrow::Cow::Owned(rcb)
158 }
159}
160
161#[derive(Debug)]
162struct CreateVolumeFromBackupTelemetryInputCaptureInterceptor;
163
164#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
165impl ::aws_smithy_runtime_api::client::interceptors::Intercept for CreateVolumeFromBackupTelemetryInputCaptureInterceptor {
166 fn name(&self) -> &'static str {
167 "CreateVolumeFromBackupTelemetryInputCaptureInterceptor"
168 }
169
170 fn read_before_execution(
171 &self,
172 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
173 '_,
174 ::aws_smithy_runtime_api::client::interceptors::context::Input,
175 ::aws_smithy_runtime_api::client::interceptors::context::Output,
176 ::aws_smithy_runtime_api::client::interceptors::context::Error,
177 >,
178 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
179 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
180 let ::std::option::Option::Some(requested) = cfg
182 .load::<::aws_smithy_types::telemetry::RequestedTelemetryAttributes>()
183 .filter(|r| !r.is_empty())
184 else {
185 return ::std::result::Result::Ok(());
186 };
187
188 let ::std::option::Option::Some(input) = context.input().downcast_ref::<CreateVolumeFromBackupInput>() else {
189 return ::std::result::Result::Ok(());
191 };
192
193 let mut captured = ::aws_smithy_types::telemetry::CapturedTelemetryAttributes::default();
194 if requested.should_capture("BackupId") {
195 if let ::std::option::Option::Some(value) = input.backup_id.as_deref() {
196 captured.insert("BackupId", value);
197 }
198 }
199 if requested.should_capture("ClientRequestToken") {
200 if let ::std::option::Option::Some(value) = input.client_request_token.as_deref() {
201 captured.insert("ClientRequestToken", value);
202 }
203 }
204 if requested.should_capture("Name") {
205 if let ::std::option::Option::Some(value) = input.name.as_deref() {
206 captured.insert("Name", value);
207 }
208 }
209
210 cfg.interceptor_state().store_put(captured);
211 ::std::result::Result::Ok(())
212 }
213}
214#[derive(Debug)]
215struct CreateVolumeFromBackupResponseDeserializer;
216impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for CreateVolumeFromBackupResponseDeserializer {
217 fn deserialize_nonstreaming_with_config(
218 &self,
219 response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
220 _cfg: &::aws_smithy_types::config_bag::ConfigBag,
221 ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
222 let (success, status) = (response.status().is_success(), response.status().as_u16());
223 let headers = response.headers();
224 let body = response.body().bytes().expect("body loaded");
225 #[allow(unused_mut)]
226 let mut force_error = false;
227 ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
228 let parse_result = if !success && status != 200 || force_error {
229 crate::protocol_serde::shape_create_volume_from_backup::de_create_volume_from_backup_http_error(status, headers, body)
230 } else {
231 crate::protocol_serde::shape_create_volume_from_backup::de_create_volume_from_backup_http_response(status, headers, body)
232 };
233 crate::protocol_serde::type_erase_result(parse_result)
234 }
235}
236#[derive(Debug)]
237struct CreateVolumeFromBackupRequestSerializer;
238impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for CreateVolumeFromBackupRequestSerializer {
239 #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
240 fn serialize_input(
241 &self,
242 input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
243 _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
244 ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
245 let input = input
246 .downcast::<crate::operation::create_volume_from_backup::CreateVolumeFromBackupInput>()
247 .expect("correct type");
248 let _header_serialization_settings = _cfg
249 .load::<crate::serialization_settings::HeaderSerializationSettings>()
250 .cloned()
251 .unwrap_or_default();
252 let mut request_builder = {
253 #[allow(clippy::uninlined_format_args)]
254 fn uri_base(
255 _input: &crate::operation::create_volume_from_backup::CreateVolumeFromBackupInput,
256 output: &mut ::std::string::String,
257 ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
258 use ::std::fmt::Write as _;
259 ::std::write!(output, "/").expect("formatting should succeed");
260 ::std::result::Result::Ok(())
261 }
262 #[allow(clippy::unnecessary_wraps)]
263 fn update_http_builder(
264 input: &crate::operation::create_volume_from_backup::CreateVolumeFromBackupInput,
265 builder: ::http_1x::request::Builder,
266 ) -> ::std::result::Result<::http_1x::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
267 let mut uri = ::std::string::String::new();
268 uri_base(input, &mut uri)?;
269 ::std::result::Result::Ok(builder.method("POST").uri(uri))
270 }
271 let mut builder = update_http_builder(&input, ::http_1x::request::Builder::new())?;
272 builder = _header_serialization_settings.set_default_header(builder, ::http_1x::header::CONTENT_TYPE, "application/x-amz-json-1.1");
273 builder = _header_serialization_settings.set_default_header(
274 builder,
275 ::http_1x::header::HeaderName::from_static("x-amz-target"),
276 "AWSSimbaAPIService_v20180301.CreateVolumeFromBackup",
277 );
278 builder
279 };
280 let body = ::aws_smithy_types::body::SdkBody::from(
281 crate::protocol_serde::shape_create_volume_from_backup::ser_create_volume_from_backup_input(&input)?,
282 );
283 if let Some(content_length) = body.content_length() {
284 let content_length = content_length.to_string();
285 request_builder = _header_serialization_settings.set_default_header(request_builder, ::http_1x::header::CONTENT_LENGTH, &content_length);
286 }
287 ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
288 }
289}
290#[derive(Debug)]
291struct CreateVolumeFromBackupEndpointParamsInterceptor;
292
293#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
294impl ::aws_smithy_runtime_api::client::interceptors::Intercept for CreateVolumeFromBackupEndpointParamsInterceptor {
295 fn name(&self) -> &'static str {
296 "CreateVolumeFromBackupEndpointParamsInterceptor"
297 }
298
299 fn read_before_execution(
300 &self,
301 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
302 '_,
303 ::aws_smithy_runtime_api::client::interceptors::context::Input,
304 ::aws_smithy_runtime_api::client::interceptors::context::Output,
305 ::aws_smithy_runtime_api::client::interceptors::context::Error,
306 >,
307 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
308 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
309 let _input = context
310 .input()
311 .downcast_ref::<CreateVolumeFromBackupInput>()
312 .ok_or("failed to downcast to CreateVolumeFromBackupInput")?;
313
314 let params = crate::config::endpoint::Params::builder()
315 .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
316 .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
317 .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
318 .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
319 .build()
320 .map_err(|err| {
321 ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
322 })?;
323 cfg.interceptor_state()
324 .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
325 ::std::result::Result::Ok(())
326 }
327}
328
329#[non_exhaustive]
334#[derive(::std::fmt::Debug)]
335pub enum CreateVolumeFromBackupError {
336 BackupNotFound(crate::types::error::BackupNotFound),
338 BadRequest(crate::types::error::BadRequest),
340 FileSystemNotFound(crate::types::error::FileSystemNotFound),
342 IncompatibleParameterError(crate::types::error::IncompatibleParameterError),
344 InternalServerError(crate::types::error::InternalServerError),
346 MissingVolumeConfiguration(crate::types::error::MissingVolumeConfiguration),
348 ServiceLimitExceeded(crate::types::error::ServiceLimitExceeded),
350 StorageVirtualMachineNotFound(crate::types::error::StorageVirtualMachineNotFound),
352 #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
354 variable wildcard pattern and check `.code()`:
355 \
356 `err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
357 \
358 See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-CreateVolumeFromBackupError) for what information is available for the error.")]
359 Unhandled(crate::error::sealed_unhandled::Unhandled),
360}
361impl CreateVolumeFromBackupError {
362 pub fn unhandled(
364 err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
365 ) -> Self {
366 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
367 source: err.into(),
368 meta: ::std::default::Default::default(),
369 })
370 }
371
372 pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
374 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
375 source: err.clone().into(),
376 meta: err,
377 })
378 }
379 pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
384 match self {
385 Self::BackupNotFound(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
386 Self::BadRequest(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
387 Self::FileSystemNotFound(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
388 Self::IncompatibleParameterError(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
389 Self::InternalServerError(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
390 Self::MissingVolumeConfiguration(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
391 Self::ServiceLimitExceeded(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
392 Self::StorageVirtualMachineNotFound(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
393 Self::Unhandled(e) => &e.meta,
394 }
395 }
396 pub fn is_backup_not_found(&self) -> bool {
398 matches!(self, Self::BackupNotFound(_))
399 }
400 pub fn is_bad_request(&self) -> bool {
402 matches!(self, Self::BadRequest(_))
403 }
404 pub fn is_file_system_not_found(&self) -> bool {
406 matches!(self, Self::FileSystemNotFound(_))
407 }
408 pub fn is_incompatible_parameter_error(&self) -> bool {
410 matches!(self, Self::IncompatibleParameterError(_))
411 }
412 pub fn is_internal_server_error(&self) -> bool {
414 matches!(self, Self::InternalServerError(_))
415 }
416 pub fn is_missing_volume_configuration(&self) -> bool {
418 matches!(self, Self::MissingVolumeConfiguration(_))
419 }
420 pub fn is_service_limit_exceeded(&self) -> bool {
422 matches!(self, Self::ServiceLimitExceeded(_))
423 }
424 pub fn is_storage_virtual_machine_not_found(&self) -> bool {
426 matches!(self, Self::StorageVirtualMachineNotFound(_))
427 }
428}
429impl ::std::error::Error for CreateVolumeFromBackupError {
430 fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
431 match self {
432 Self::BackupNotFound(_inner) => ::std::option::Option::Some(_inner),
433 Self::BadRequest(_inner) => ::std::option::Option::Some(_inner),
434 Self::FileSystemNotFound(_inner) => ::std::option::Option::Some(_inner),
435 Self::IncompatibleParameterError(_inner) => ::std::option::Option::Some(_inner),
436 Self::InternalServerError(_inner) => ::std::option::Option::Some(_inner),
437 Self::MissingVolumeConfiguration(_inner) => ::std::option::Option::Some(_inner),
438 Self::ServiceLimitExceeded(_inner) => ::std::option::Option::Some(_inner),
439 Self::StorageVirtualMachineNotFound(_inner) => ::std::option::Option::Some(_inner),
440 Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
441 }
442 }
443}
444impl ::std::fmt::Display for CreateVolumeFromBackupError {
445 fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
446 match self {
447 Self::BackupNotFound(_inner) => _inner.fmt(f),
448 Self::BadRequest(_inner) => _inner.fmt(f),
449 Self::FileSystemNotFound(_inner) => _inner.fmt(f),
450 Self::IncompatibleParameterError(_inner) => _inner.fmt(f),
451 Self::InternalServerError(_inner) => _inner.fmt(f),
452 Self::MissingVolumeConfiguration(_inner) => _inner.fmt(f),
453 Self::ServiceLimitExceeded(_inner) => _inner.fmt(f),
454 Self::StorageVirtualMachineNotFound(_inner) => _inner.fmt(f),
455 Self::Unhandled(_inner) => {
456 if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
457 write!(f, "unhandled error ({code})")
458 } else {
459 f.write_str("unhandled error")
460 }
461 }
462 }
463 }
464}
465impl ::aws_smithy_types::retry::ProvideErrorKind for CreateVolumeFromBackupError {
466 fn code(&self) -> ::std::option::Option<&str> {
467 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
468 }
469 fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
470 ::std::option::Option::None
471 }
472}
473impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for CreateVolumeFromBackupError {
474 fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
475 match self {
476 Self::BackupNotFound(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
477 Self::BadRequest(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
478 Self::FileSystemNotFound(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
479 Self::IncompatibleParameterError(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
480 Self::InternalServerError(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
481 Self::MissingVolumeConfiguration(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
482 Self::ServiceLimitExceeded(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
483 Self::StorageVirtualMachineNotFound(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
484 Self::Unhandled(_inner) => &_inner.meta,
485 }
486 }
487}
488impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for CreateVolumeFromBackupError {
489 fn create_unhandled_error(
490 source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
491 meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
492 ) -> Self {
493 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
494 source,
495 meta: meta.unwrap_or_default(),
496 })
497 }
498}
499impl ::aws_types::request_id::RequestId for crate::operation::create_volume_from_backup::CreateVolumeFromBackupError {
500 fn request_id(&self) -> Option<&str> {
501 self.meta().request_id()
502 }
503}
504
505pub use crate::operation::create_volume_from_backup::_create_volume_from_backup_input::CreateVolumeFromBackupInput;
506
507pub use crate::operation::create_volume_from_backup::_create_volume_from_backup_output::CreateVolumeFromBackupOutput;
508
509mod _create_volume_from_backup_input;
510
511mod _create_volume_from_backup_output;
512
513pub mod builders;