1#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct RestoreDBInstanceFromS3;
6impl RestoreDBInstanceFromS3 {
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::restore_db_instance_from_s3::RestoreDbInstanceFromS3Input,
14 ) -> ::std::result::Result<
15 crate::operation::restore_db_instance_from_s3::RestoreDbInstanceFromS3Output,
16 ::aws_smithy_runtime_api::client::result::SdkError<
17 crate::operation::restore_db_instance_from_s3::RestoreDBInstanceFromS3Error,
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::restore_db_instance_from_s3::RestoreDBInstanceFromS3Error>()
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::restore_db_instance_from_s3::RestoreDbInstanceFromS3Output>()
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::restore_db_instance_from_s3::RestoreDbInstanceFromS3Input,
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("RDS", "RestoreDBInstanceFromS3", input, runtime_plugins, stop_point)
55 .instrument(::tracing::debug_span!(
58 "RDS.RestoreDBInstanceFromS3",
59 "rpc.service" = "RDS",
60 "rpc.method" = "RestoreDBInstanceFromS3",
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
74 if let ::std::option::Option::Some(config_override) = config_override {
75 for plugin in config_override.runtime_plugins.iter().cloned() {
76 runtime_plugins = runtime_plugins.with_operation_plugin(plugin);
77 }
78 runtime_plugins = runtime_plugins.with_operation_plugin(crate::config::ConfigOverrideRuntimePlugin::new(
79 config_override,
80 client_config.config.clone(),
81 &client_config.runtime_components,
82 ));
83 }
84 runtime_plugins
85 }
86}
87impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for RestoreDBInstanceFromS3 {
88 fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
89 let mut cfg = ::aws_smithy_types::config_bag::Layer::new("RestoreDBInstanceFromS3");
90
91 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
92 RestoreDBInstanceFromS3RequestSerializer,
93 ));
94 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
95 RestoreDBInstanceFromS3ResponseDeserializer,
96 ));
97
98 cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
99 crate::config::auth::Params::builder()
100 .operation_name("RestoreDBInstanceFromS3")
101 .build()
102 .expect("required fields set"),
103 ));
104
105 cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::SensitiveOutput);
106 cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new(
107 "RestoreDBInstanceFromS3",
108 "RDS",
109 ));
110 let mut signing_options = ::aws_runtime::auth::SigningOptions::default();
111 signing_options.double_uri_encode = true;
112 signing_options.content_sha256_header = false;
113 signing_options.normalize_uri_path = true;
114 signing_options.payload_override = None;
115
116 cfg.store_put(::aws_runtime::auth::SigV4OperationSigningConfig {
117 signing_options,
118 ..::std::default::Default::default()
119 });
120
121 ::std::option::Option::Some(cfg.freeze())
122 }
123
124 fn runtime_components(
125 &self,
126 _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
127 ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
128 #[allow(unused_mut)]
129 let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("RestoreDBInstanceFromS3")
130 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
131 RestoreDBInstanceFromS3TelemetryInputCaptureInterceptor,
132 ))
133 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
134 ::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default(),
135 ))
136 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
137 RestoreDBInstanceFromS3EndpointParamsInterceptor,
138 ))
139 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
140 crate::operation::restore_db_instance_from_s3::RestoreDBInstanceFromS3Error,
141 >::new())
142 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
143 crate::operation::restore_db_instance_from_s3::RestoreDBInstanceFromS3Error,
144 >::new())
145 .with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<
146 crate::operation::restore_db_instance_from_s3::RestoreDBInstanceFromS3Error,
147 >::new());
148
149 ::std::borrow::Cow::Owned(rcb)
150 }
151}
152
153#[derive(Debug)]
154struct RestoreDBInstanceFromS3TelemetryInputCaptureInterceptor;
155
156#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
157impl ::aws_smithy_runtime_api::client::interceptors::Intercept for RestoreDBInstanceFromS3TelemetryInputCaptureInterceptor {
158 fn name(&self) -> &'static str {
159 "RestoreDBInstanceFromS3TelemetryInputCaptureInterceptor"
160 }
161
162 fn read_before_execution(
163 &self,
164 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
165 '_,
166 ::aws_smithy_runtime_api::client::interceptors::context::Input,
167 ::aws_smithy_runtime_api::client::interceptors::context::Output,
168 ::aws_smithy_runtime_api::client::interceptors::context::Error,
169 >,
170 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
171 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
172 let ::std::option::Option::Some(requested) = cfg
174 .load::<::aws_smithy_types::telemetry::RequestedTelemetryAttributes>()
175 .filter(|r| !r.is_empty())
176 else {
177 return ::std::result::Result::Ok(());
178 };
179
180 let ::std::option::Option::Some(input) = context.input().downcast_ref::<RestoreDbInstanceFromS3Input>() else {
181 return ::std::result::Result::Ok(());
183 };
184
185 let mut captured = ::aws_smithy_types::telemetry::CapturedTelemetryAttributes::default();
186 if requested.should_capture("DBName") {
187 if let ::std::option::Option::Some(value) = input.db_name.as_deref() {
188 captured.insert("DBName", value);
189 }
190 }
191 if requested.should_capture("DBInstanceIdentifier") {
192 if let ::std::option::Option::Some(value) = input.db_instance_identifier.as_deref() {
193 captured.insert("DBInstanceIdentifier", value);
194 }
195 }
196 if requested.should_capture("DBInstanceClass") {
197 if let ::std::option::Option::Some(value) = input.db_instance_class.as_deref() {
198 captured.insert("DBInstanceClass", value);
199 }
200 }
201 if requested.should_capture("Engine") {
202 if let ::std::option::Option::Some(value) = input.engine.as_deref() {
203 captured.insert("Engine", value);
204 }
205 }
206 if requested.should_capture("MasterUsername") {
207 if let ::std::option::Option::Some(value) = input.master_username.as_deref() {
208 captured.insert("MasterUsername", value);
209 }
210 }
211 if requested.should_capture("AvailabilityZone") {
212 if let ::std::option::Option::Some(value) = input.availability_zone.as_deref() {
213 captured.insert("AvailabilityZone", value);
214 }
215 }
216 if requested.should_capture("DBSubnetGroupName") {
217 if let ::std::option::Option::Some(value) = input.db_subnet_group_name.as_deref() {
218 captured.insert("DBSubnetGroupName", value);
219 }
220 }
221 if requested.should_capture("PreferredMaintenanceWindow") {
222 if let ::std::option::Option::Some(value) = input.preferred_maintenance_window.as_deref() {
223 captured.insert("PreferredMaintenanceWindow", value);
224 }
225 }
226 if requested.should_capture("DBParameterGroupName") {
227 if let ::std::option::Option::Some(value) = input.db_parameter_group_name.as_deref() {
228 captured.insert("DBParameterGroupName", value);
229 }
230 }
231 if requested.should_capture("PreferredBackupWindow") {
232 if let ::std::option::Option::Some(value) = input.preferred_backup_window.as_deref() {
233 captured.insert("PreferredBackupWindow", value);
234 }
235 }
236 if requested.should_capture("EngineVersion") {
237 if let ::std::option::Option::Some(value) = input.engine_version.as_deref() {
238 captured.insert("EngineVersion", value);
239 }
240 }
241 if requested.should_capture("LicenseModel") {
242 if let ::std::option::Option::Some(value) = input.license_model.as_deref() {
243 captured.insert("LicenseModel", value);
244 }
245 }
246 if requested.should_capture("OptionGroupName") {
247 if let ::std::option::Option::Some(value) = input.option_group_name.as_deref() {
248 captured.insert("OptionGroupName", value);
249 }
250 }
251 if requested.should_capture("StorageType") {
252 if let ::std::option::Option::Some(value) = input.storage_type.as_deref() {
253 captured.insert("StorageType", value);
254 }
255 }
256 if requested.should_capture("KmsKeyId") {
257 if let ::std::option::Option::Some(value) = input.kms_key_id.as_deref() {
258 captured.insert("KmsKeyId", value);
259 }
260 }
261 if requested.should_capture("MonitoringRoleArn") {
262 if let ::std::option::Option::Some(value) = input.monitoring_role_arn.as_deref() {
263 captured.insert("MonitoringRoleArn", value);
264 }
265 }
266 if requested.should_capture("SourceEngine") {
267 if let ::std::option::Option::Some(value) = input.source_engine.as_deref() {
268 captured.insert("SourceEngine", value);
269 }
270 }
271 if requested.should_capture("SourceEngineVersion") {
272 if let ::std::option::Option::Some(value) = input.source_engine_version.as_deref() {
273 captured.insert("SourceEngineVersion", value);
274 }
275 }
276 if requested.should_capture("S3BucketName") {
277 if let ::std::option::Option::Some(value) = input.s3_bucket_name.as_deref() {
278 captured.insert("S3BucketName", value);
279 }
280 }
281 if requested.should_capture("S3Prefix") {
282 if let ::std::option::Option::Some(value) = input.s3_prefix.as_deref() {
283 captured.insert("S3Prefix", value);
284 }
285 }
286 if requested.should_capture("S3IngestionRoleArn") {
287 if let ::std::option::Option::Some(value) = input.s3_ingestion_role_arn.as_deref() {
288 captured.insert("S3IngestionRoleArn", value);
289 }
290 }
291 if requested.should_capture("PerformanceInsightsKMSKeyId") {
292 if let ::std::option::Option::Some(value) = input.performance_insights_kms_key_id.as_deref() {
293 captured.insert("PerformanceInsightsKMSKeyId", value);
294 }
295 }
296 if requested.should_capture("NetworkType") {
297 if let ::std::option::Option::Some(value) = input.network_type.as_deref() {
298 captured.insert("NetworkType", value);
299 }
300 }
301 if requested.should_capture("MasterUserSecretKmsKeyId") {
302 if let ::std::option::Option::Some(value) = input.master_user_secret_kms_key_id.as_deref() {
303 captured.insert("MasterUserSecretKmsKeyId", value);
304 }
305 }
306 if requested.should_capture("CACertificateIdentifier") {
307 if let ::std::option::Option::Some(value) = input.ca_certificate_identifier.as_deref() {
308 captured.insert("CACertificateIdentifier", value);
309 }
310 }
311 if requested.should_capture("EngineLifecycleSupport") {
312 if let ::std::option::Option::Some(value) = input.engine_lifecycle_support.as_deref() {
313 captured.insert("EngineLifecycleSupport", value);
314 }
315 }
316
317 cfg.interceptor_state().store_put(captured);
318 ::std::result::Result::Ok(())
319 }
320}
321#[derive(Debug)]
322struct RestoreDBInstanceFromS3ResponseDeserializer;
323impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for RestoreDBInstanceFromS3ResponseDeserializer {
324 fn deserialize_nonstreaming_with_config(
325 &self,
326 response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
327 _cfg: &::aws_smithy_types::config_bag::ConfigBag,
328 ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
329 let (success, status) = (response.status().is_success(), response.status().as_u16());
330 let headers = response.headers();
331 let body = response.body().bytes().expect("body loaded");
332 #[allow(unused_mut)]
333 let mut force_error = false;
334 ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
335 let parse_result = if !success && status != 200 || force_error {
336 crate::protocol_serde::shape_restore_db_instance_from_s3::de_restore_db_instance_from_s3_http_error(status, headers, body)
337 } else {
338 crate::protocol_serde::shape_restore_db_instance_from_s3::de_restore_db_instance_from_s3_http_response(status, headers, body)
339 };
340 crate::protocol_serde::type_erase_result(parse_result)
341 }
342}
343#[derive(Debug)]
344struct RestoreDBInstanceFromS3RequestSerializer;
345impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for RestoreDBInstanceFromS3RequestSerializer {
346 #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
347 fn serialize_input(
348 &self,
349 input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
350 _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
351 ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
352 let input = input
353 .downcast::<crate::operation::restore_db_instance_from_s3::RestoreDbInstanceFromS3Input>()
354 .expect("correct type");
355 let _header_serialization_settings = _cfg
356 .load::<crate::serialization_settings::HeaderSerializationSettings>()
357 .cloned()
358 .unwrap_or_default();
359 let mut request_builder = {
360 #[allow(clippy::uninlined_format_args)]
361 fn uri_base(
362 _input: &crate::operation::restore_db_instance_from_s3::RestoreDbInstanceFromS3Input,
363 output: &mut ::std::string::String,
364 ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
365 use ::std::fmt::Write as _;
366 ::std::write!(output, "/").expect("formatting should succeed");
367 ::std::result::Result::Ok(())
368 }
369 #[allow(clippy::unnecessary_wraps)]
370 fn update_http_builder(
371 input: &crate::operation::restore_db_instance_from_s3::RestoreDbInstanceFromS3Input,
372 builder: ::http_1x::request::Builder,
373 ) -> ::std::result::Result<::http_1x::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
374 let mut uri = ::std::string::String::new();
375 uri_base(input, &mut uri)?;
376 ::std::result::Result::Ok(builder.method("POST").uri(uri))
377 }
378 let mut builder = update_http_builder(&input, ::http_1x::request::Builder::new())?;
379 builder =
380 _header_serialization_settings.set_default_header(builder, ::http_1x::header::CONTENT_TYPE, "application/x-www-form-urlencoded");
381 builder
382 };
383 let body = ::aws_smithy_types::body::SdkBody::from(
384 crate::protocol_serde::shape_restore_db_instance_from_s3_input::ser_restore_db_instance_from_s3_input_input_input(&input)?,
385 );
386 if let Some(content_length) = body.content_length() {
387 let content_length = content_length.to_string();
388 request_builder = _header_serialization_settings.set_default_header(request_builder, ::http_1x::header::CONTENT_LENGTH, &content_length);
389 }
390 ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
391 }
392}
393#[derive(Debug)]
394struct RestoreDBInstanceFromS3EndpointParamsInterceptor;
395
396#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
397impl ::aws_smithy_runtime_api::client::interceptors::Intercept for RestoreDBInstanceFromS3EndpointParamsInterceptor {
398 fn name(&self) -> &'static str {
399 "RestoreDBInstanceFromS3EndpointParamsInterceptor"
400 }
401
402 fn read_before_execution(
403 &self,
404 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
405 '_,
406 ::aws_smithy_runtime_api::client::interceptors::context::Input,
407 ::aws_smithy_runtime_api::client::interceptors::context::Output,
408 ::aws_smithy_runtime_api::client::interceptors::context::Error,
409 >,
410 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
411 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
412 let _input = context
413 .input()
414 .downcast_ref::<RestoreDbInstanceFromS3Input>()
415 .ok_or("failed to downcast to RestoreDbInstanceFromS3Input")?;
416
417 let params = crate::config::endpoint::Params::builder()
418 .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
419 .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
420 .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
421 .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
422 .build()
423 .map_err(|err| {
424 ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
425 })?;
426 cfg.interceptor_state()
427 .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
428 ::std::result::Result::Ok(())
429 }
430}
431
432#[non_exhaustive]
437#[derive(::std::fmt::Debug)]
438pub enum RestoreDBInstanceFromS3Error {
439 AuthorizationNotFoundFault(crate::types::error::AuthorizationNotFoundFault),
442 #[deprecated(note = "Please avoid using this fault")]
444 BackupPolicyNotFoundFault(crate::types::error::BackupPolicyNotFoundFault),
445 CertificateNotFoundFault(crate::types::error::CertificateNotFoundFault),
447 DbInstanceAlreadyExistsFault(crate::types::error::DbInstanceAlreadyExistsFault),
449 DbParameterGroupNotFoundFault(crate::types::error::DbParameterGroupNotFoundFault),
451 DbSecurityGroupNotFoundFault(crate::types::error::DbSecurityGroupNotFoundFault),
453 DbSubnetGroupDoesNotCoverEnoughAZs(crate::types::error::DbSubnetGroupDoesNotCoverEnoughAZs),
455 DbSubnetGroupNotFoundFault(crate::types::error::DbSubnetGroupNotFoundFault),
457 InstanceQuotaExceededFault(crate::types::error::InstanceQuotaExceededFault),
459 InsufficientDbInstanceCapacityFault(crate::types::error::InsufficientDbInstanceCapacityFault),
461 InvalidS3BucketFault(crate::types::error::InvalidS3BucketFault),
463 InvalidSubnet(crate::types::error::InvalidSubnet),
465 InvalidVpcNetworkStateFault(crate::types::error::InvalidVpcNetworkStateFault),
467 KmsKeyNotAccessibleFault(crate::types::error::KmsKeyNotAccessibleFault),
469 NetworkTypeNotSupported(crate::types::error::NetworkTypeNotSupported),
471 OptionGroupNotFoundFault(crate::types::error::OptionGroupNotFoundFault),
473 ProvisionedIopsNotAvailableInAzFault(crate::types::error::ProvisionedIopsNotAvailableInAzFault),
475 StorageQuotaExceededFault(crate::types::error::StorageQuotaExceededFault),
477 StorageTypeNotSupportedFault(crate::types::error::StorageTypeNotSupportedFault),
479 VpcEncryptionControlViolationException(crate::types::error::VpcEncryptionControlViolationException),
481 #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
483 variable wildcard pattern and check `.code()`:
484 \
485 `err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
486 \
487 See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-RestoreDBInstanceFromS3Error) for what information is available for the error.")]
488 Unhandled(crate::error::sealed_unhandled::Unhandled),
489}
490impl RestoreDBInstanceFromS3Error {
491 pub fn unhandled(
493 err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
494 ) -> Self {
495 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
496 source: err.into(),
497 meta: ::std::default::Default::default(),
498 })
499 }
500
501 pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
503 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
504 source: err.clone().into(),
505 meta: err,
506 })
507 }
508 pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
513 match self {
514 Self::AuthorizationNotFoundFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
515 Self::BackupPolicyNotFoundFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
516 Self::CertificateNotFoundFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
517 Self::DbInstanceAlreadyExistsFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
518 Self::DbParameterGroupNotFoundFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
519 Self::DbSecurityGroupNotFoundFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
520 Self::DbSubnetGroupDoesNotCoverEnoughAZs(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
521 Self::DbSubnetGroupNotFoundFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
522 Self::InstanceQuotaExceededFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
523 Self::InsufficientDbInstanceCapacityFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
524 Self::InvalidS3BucketFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
525 Self::InvalidSubnet(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
526 Self::InvalidVpcNetworkStateFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
527 Self::KmsKeyNotAccessibleFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
528 Self::NetworkTypeNotSupported(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
529 Self::OptionGroupNotFoundFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
530 Self::ProvisionedIopsNotAvailableInAzFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
531 Self::StorageQuotaExceededFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
532 Self::StorageTypeNotSupportedFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
533 Self::VpcEncryptionControlViolationException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
534 Self::Unhandled(e) => &e.meta,
535 }
536 }
537 pub fn is_authorization_not_found_fault(&self) -> bool {
539 matches!(self, Self::AuthorizationNotFoundFault(_))
540 }
541 pub fn is_backup_policy_not_found_fault(&self) -> bool {
543 matches!(self, Self::BackupPolicyNotFoundFault(_))
544 }
545 pub fn is_certificate_not_found_fault(&self) -> bool {
547 matches!(self, Self::CertificateNotFoundFault(_))
548 }
549 pub fn is_db_instance_already_exists_fault(&self) -> bool {
551 matches!(self, Self::DbInstanceAlreadyExistsFault(_))
552 }
553 pub fn is_db_parameter_group_not_found_fault(&self) -> bool {
555 matches!(self, Self::DbParameterGroupNotFoundFault(_))
556 }
557 pub fn is_db_security_group_not_found_fault(&self) -> bool {
559 matches!(self, Self::DbSecurityGroupNotFoundFault(_))
560 }
561 pub fn is_db_subnet_group_does_not_cover_enough_azs(&self) -> bool {
563 matches!(self, Self::DbSubnetGroupDoesNotCoverEnoughAZs(_))
564 }
565 pub fn is_db_subnet_group_not_found_fault(&self) -> bool {
567 matches!(self, Self::DbSubnetGroupNotFoundFault(_))
568 }
569 pub fn is_instance_quota_exceeded_fault(&self) -> bool {
571 matches!(self, Self::InstanceQuotaExceededFault(_))
572 }
573 pub fn is_insufficient_db_instance_capacity_fault(&self) -> bool {
575 matches!(self, Self::InsufficientDbInstanceCapacityFault(_))
576 }
577 pub fn is_invalid_s3_bucket_fault(&self) -> bool {
579 matches!(self, Self::InvalidS3BucketFault(_))
580 }
581 pub fn is_invalid_subnet(&self) -> bool {
583 matches!(self, Self::InvalidSubnet(_))
584 }
585 pub fn is_invalid_vpc_network_state_fault(&self) -> bool {
587 matches!(self, Self::InvalidVpcNetworkStateFault(_))
588 }
589 pub fn is_kms_key_not_accessible_fault(&self) -> bool {
591 matches!(self, Self::KmsKeyNotAccessibleFault(_))
592 }
593 pub fn is_network_type_not_supported(&self) -> bool {
595 matches!(self, Self::NetworkTypeNotSupported(_))
596 }
597 pub fn is_option_group_not_found_fault(&self) -> bool {
599 matches!(self, Self::OptionGroupNotFoundFault(_))
600 }
601 pub fn is_provisioned_iops_not_available_in_az_fault(&self) -> bool {
603 matches!(self, Self::ProvisionedIopsNotAvailableInAzFault(_))
604 }
605 pub fn is_storage_quota_exceeded_fault(&self) -> bool {
607 matches!(self, Self::StorageQuotaExceededFault(_))
608 }
609 pub fn is_storage_type_not_supported_fault(&self) -> bool {
611 matches!(self, Self::StorageTypeNotSupportedFault(_))
612 }
613 pub fn is_vpc_encryption_control_violation_exception(&self) -> bool {
615 matches!(self, Self::VpcEncryptionControlViolationException(_))
616 }
617}
618impl ::std::error::Error for RestoreDBInstanceFromS3Error {
619 fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
620 match self {
621 Self::AuthorizationNotFoundFault(_inner) => ::std::option::Option::Some(_inner),
622 Self::BackupPolicyNotFoundFault(_inner) => ::std::option::Option::Some(_inner),
623 Self::CertificateNotFoundFault(_inner) => ::std::option::Option::Some(_inner),
624 Self::DbInstanceAlreadyExistsFault(_inner) => ::std::option::Option::Some(_inner),
625 Self::DbParameterGroupNotFoundFault(_inner) => ::std::option::Option::Some(_inner),
626 Self::DbSecurityGroupNotFoundFault(_inner) => ::std::option::Option::Some(_inner),
627 Self::DbSubnetGroupDoesNotCoverEnoughAZs(_inner) => ::std::option::Option::Some(_inner),
628 Self::DbSubnetGroupNotFoundFault(_inner) => ::std::option::Option::Some(_inner),
629 Self::InstanceQuotaExceededFault(_inner) => ::std::option::Option::Some(_inner),
630 Self::InsufficientDbInstanceCapacityFault(_inner) => ::std::option::Option::Some(_inner),
631 Self::InvalidS3BucketFault(_inner) => ::std::option::Option::Some(_inner),
632 Self::InvalidSubnet(_inner) => ::std::option::Option::Some(_inner),
633 Self::InvalidVpcNetworkStateFault(_inner) => ::std::option::Option::Some(_inner),
634 Self::KmsKeyNotAccessibleFault(_inner) => ::std::option::Option::Some(_inner),
635 Self::NetworkTypeNotSupported(_inner) => ::std::option::Option::Some(_inner),
636 Self::OptionGroupNotFoundFault(_inner) => ::std::option::Option::Some(_inner),
637 Self::ProvisionedIopsNotAvailableInAzFault(_inner) => ::std::option::Option::Some(_inner),
638 Self::StorageQuotaExceededFault(_inner) => ::std::option::Option::Some(_inner),
639 Self::StorageTypeNotSupportedFault(_inner) => ::std::option::Option::Some(_inner),
640 Self::VpcEncryptionControlViolationException(_inner) => ::std::option::Option::Some(_inner),
641 Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
642 }
643 }
644}
645impl ::std::fmt::Display for RestoreDBInstanceFromS3Error {
646 fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
647 match self {
648 Self::AuthorizationNotFoundFault(_inner) => _inner.fmt(f),
649 Self::BackupPolicyNotFoundFault(_inner) => _inner.fmt(f),
650 Self::CertificateNotFoundFault(_inner) => _inner.fmt(f),
651 Self::DbInstanceAlreadyExistsFault(_inner) => _inner.fmt(f),
652 Self::DbParameterGroupNotFoundFault(_inner) => _inner.fmt(f),
653 Self::DbSecurityGroupNotFoundFault(_inner) => _inner.fmt(f),
654 Self::DbSubnetGroupDoesNotCoverEnoughAZs(_inner) => _inner.fmt(f),
655 Self::DbSubnetGroupNotFoundFault(_inner) => _inner.fmt(f),
656 Self::InstanceQuotaExceededFault(_inner) => _inner.fmt(f),
657 Self::InsufficientDbInstanceCapacityFault(_inner) => _inner.fmt(f),
658 Self::InvalidS3BucketFault(_inner) => _inner.fmt(f),
659 Self::InvalidSubnet(_inner) => _inner.fmt(f),
660 Self::InvalidVpcNetworkStateFault(_inner) => _inner.fmt(f),
661 Self::KmsKeyNotAccessibleFault(_inner) => _inner.fmt(f),
662 Self::NetworkTypeNotSupported(_inner) => _inner.fmt(f),
663 Self::OptionGroupNotFoundFault(_inner) => _inner.fmt(f),
664 Self::ProvisionedIopsNotAvailableInAzFault(_inner) => _inner.fmt(f),
665 Self::StorageQuotaExceededFault(_inner) => _inner.fmt(f),
666 Self::StorageTypeNotSupportedFault(_inner) => _inner.fmt(f),
667 Self::VpcEncryptionControlViolationException(_inner) => _inner.fmt(f),
668 Self::Unhandled(_inner) => {
669 if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
670 write!(f, "unhandled error ({code})")
671 } else {
672 f.write_str("unhandled error")
673 }
674 }
675 }
676 }
677}
678impl ::aws_smithy_types::retry::ProvideErrorKind for RestoreDBInstanceFromS3Error {
679 fn code(&self) -> ::std::option::Option<&str> {
680 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
681 }
682 fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
683 ::std::option::Option::None
684 }
685}
686impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for RestoreDBInstanceFromS3Error {
687 fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
688 match self {
689 Self::AuthorizationNotFoundFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
690 Self::BackupPolicyNotFoundFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
691 Self::CertificateNotFoundFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
692 Self::DbInstanceAlreadyExistsFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
693 Self::DbParameterGroupNotFoundFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
694 Self::DbSecurityGroupNotFoundFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
695 Self::DbSubnetGroupDoesNotCoverEnoughAZs(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
696 Self::DbSubnetGroupNotFoundFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
697 Self::InstanceQuotaExceededFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
698 Self::InsufficientDbInstanceCapacityFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
699 Self::InvalidS3BucketFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
700 Self::InvalidSubnet(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
701 Self::InvalidVpcNetworkStateFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
702 Self::KmsKeyNotAccessibleFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
703 Self::NetworkTypeNotSupported(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
704 Self::OptionGroupNotFoundFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
705 Self::ProvisionedIopsNotAvailableInAzFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
706 Self::StorageQuotaExceededFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
707 Self::StorageTypeNotSupportedFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
708 Self::VpcEncryptionControlViolationException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
709 Self::Unhandled(_inner) => &_inner.meta,
710 }
711 }
712}
713impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for RestoreDBInstanceFromS3Error {
714 fn create_unhandled_error(
715 source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
716 meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
717 ) -> Self {
718 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
719 source,
720 meta: meta.unwrap_or_default(),
721 })
722 }
723}
724impl ::aws_types::request_id::RequestId for crate::operation::restore_db_instance_from_s3::RestoreDBInstanceFromS3Error {
725 fn request_id(&self) -> Option<&str> {
726 self.meta().request_id()
727 }
728}
729
730pub use crate::operation::restore_db_instance_from_s3::_restore_db_instance_from_s3_input::RestoreDbInstanceFromS3Input;
731
732pub use crate::operation::restore_db_instance_from_s3::_restore_db_instance_from_s3_output::RestoreDbInstanceFromS3Output;
733
734mod _restore_db_instance_from_s3_input;
735
736mod _restore_db_instance_from_s3_output;
737
738pub mod builders;