aws_sdk_redshift/operation/
restore_from_cluster_snapshot.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2/// Orchestration and serialization glue logic for `RestoreFromClusterSnapshot`.
3#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct RestoreFromClusterSnapshot;
6impl RestoreFromClusterSnapshot {
7    /// Creates a new `RestoreFromClusterSnapshot`
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::restore_from_cluster_snapshot::RestoreFromClusterSnapshotInput,
14    ) -> ::std::result::Result<
15        crate::operation::restore_from_cluster_snapshot::RestoreFromClusterSnapshotOutput,
16        ::aws_smithy_runtime_api::client::result::SdkError<
17            crate::operation::restore_from_cluster_snapshot::RestoreFromClusterSnapshotError,
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_from_cluster_snapshot::RestoreFromClusterSnapshotError>()
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_from_cluster_snapshot::RestoreFromClusterSnapshotOutput>()
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_from_cluster_snapshot::RestoreFromClusterSnapshotInput,
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(
55            "Redshift",
56            "RestoreFromClusterSnapshot",
57            input,
58            runtime_plugins,
59            stop_point,
60        )
61        // Create a parent span for the entire operation. Includes a random, internal-only,
62        // seven-digit ID for the operation orchestration so that it can be correlated in the logs.
63        .instrument(::tracing::debug_span!(
64            "Redshift.RestoreFromClusterSnapshot",
65            "rpc.service" = "Redshift",
66            "rpc.method" = "RestoreFromClusterSnapshot",
67            "sdk_invocation_id" = ::fastrand::u32(1_000_000..10_000_000),
68            "rpc.system" = "aws-api",
69        ))
70        .await
71    }
72
73    pub(crate) fn operation_runtime_plugins(
74        client_runtime_plugins: ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
75        client_config: &crate::config::Config,
76        config_override: ::std::option::Option<crate::config::Builder>,
77    ) -> ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins {
78        let mut runtime_plugins = client_runtime_plugins.with_operation_plugin(Self::new());
79
80        if let ::std::option::Option::Some(config_override) = config_override {
81            for plugin in config_override.runtime_plugins.iter().cloned() {
82                runtime_plugins = runtime_plugins.with_operation_plugin(plugin);
83            }
84            runtime_plugins = runtime_plugins.with_operation_plugin(crate::config::ConfigOverrideRuntimePlugin::new(
85                config_override,
86                client_config.config.clone(),
87                &client_config.runtime_components,
88            ));
89        }
90        runtime_plugins
91    }
92}
93impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for RestoreFromClusterSnapshot {
94    fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
95        let mut cfg = ::aws_smithy_types::config_bag::Layer::new("RestoreFromClusterSnapshot");
96
97        cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
98            RestoreFromClusterSnapshotRequestSerializer,
99        ));
100        cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
101            RestoreFromClusterSnapshotResponseDeserializer,
102        ));
103
104        cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
105            crate::config::auth::Params::builder()
106                .operation_name("RestoreFromClusterSnapshot")
107                .build()
108                .expect("required fields set"),
109        ));
110
111        cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::SensitiveOutput);
112        cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new(
113            "RestoreFromClusterSnapshot",
114            "Redshift",
115        ));
116        let mut signing_options = ::aws_runtime::auth::SigningOptions::default();
117        signing_options.double_uri_encode = true;
118        signing_options.content_sha256_header = false;
119        signing_options.normalize_uri_path = true;
120        signing_options.payload_override = None;
121
122        cfg.store_put(::aws_runtime::auth::SigV4OperationSigningConfig {
123            signing_options,
124            ..::std::default::Default::default()
125        });
126
127        ::std::option::Option::Some(cfg.freeze())
128    }
129
130    fn runtime_components(
131        &self,
132        _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
133    ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
134        #[allow(unused_mut)]
135        let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("RestoreFromClusterSnapshot")
136            .with_interceptor(::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default())
137            .with_interceptor(RestoreFromClusterSnapshotEndpointParamsInterceptor)
138            .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
139                crate::operation::restore_from_cluster_snapshot::RestoreFromClusterSnapshotError,
140            >::new())
141            .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
142                crate::operation::restore_from_cluster_snapshot::RestoreFromClusterSnapshotError,
143            >::new())
144            .with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<
145                crate::operation::restore_from_cluster_snapshot::RestoreFromClusterSnapshotError,
146            >::new());
147
148        ::std::borrow::Cow::Owned(rcb)
149    }
150}
151
152#[derive(Debug)]
153struct RestoreFromClusterSnapshotResponseDeserializer;
154impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for RestoreFromClusterSnapshotResponseDeserializer {
155    fn deserialize_nonstreaming(
156        &self,
157        response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
158    ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
159        let (success, status) = (response.status().is_success(), response.status().as_u16());
160        let headers = response.headers();
161        let body = response.body().bytes().expect("body loaded");
162        #[allow(unused_mut)]
163        let mut force_error = false;
164        ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
165        let parse_result = if !success && status != 200 || force_error {
166            crate::protocol_serde::shape_restore_from_cluster_snapshot::de_restore_from_cluster_snapshot_http_error(status, headers, body)
167        } else {
168            crate::protocol_serde::shape_restore_from_cluster_snapshot::de_restore_from_cluster_snapshot_http_response(status, headers, body)
169        };
170        crate::protocol_serde::type_erase_result(parse_result)
171    }
172}
173#[derive(Debug)]
174struct RestoreFromClusterSnapshotRequestSerializer;
175impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for RestoreFromClusterSnapshotRequestSerializer {
176    #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
177    fn serialize_input(
178        &self,
179        input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
180        _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
181    ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
182        let input = input
183            .downcast::<crate::operation::restore_from_cluster_snapshot::RestoreFromClusterSnapshotInput>()
184            .expect("correct type");
185        let _header_serialization_settings = _cfg
186            .load::<crate::serialization_settings::HeaderSerializationSettings>()
187            .cloned()
188            .unwrap_or_default();
189        let mut request_builder = {
190            #[allow(clippy::uninlined_format_args)]
191            fn uri_base(
192                _input: &crate::operation::restore_from_cluster_snapshot::RestoreFromClusterSnapshotInput,
193                output: &mut ::std::string::String,
194            ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
195                use ::std::fmt::Write as _;
196                ::std::write!(output, "/").expect("formatting should succeed");
197                ::std::result::Result::Ok(())
198            }
199            #[allow(clippy::unnecessary_wraps)]
200            fn update_http_builder(
201                input: &crate::operation::restore_from_cluster_snapshot::RestoreFromClusterSnapshotInput,
202                builder: ::http::request::Builder,
203            ) -> ::std::result::Result<::http::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
204                let mut uri = ::std::string::String::new();
205                uri_base(input, &mut uri)?;
206                ::std::result::Result::Ok(builder.method("POST").uri(uri))
207            }
208            let mut builder = update_http_builder(&input, ::http::request::Builder::new())?;
209            builder = _header_serialization_settings.set_default_header(builder, ::http::header::CONTENT_TYPE, "application/x-www-form-urlencoded");
210            builder
211        };
212        let body = ::aws_smithy_types::body::SdkBody::from(
213            crate::protocol_serde::shape_restore_from_cluster_snapshot_input::ser_restore_from_cluster_snapshot_input_input_input(&input)?,
214        );
215        if let Some(content_length) = body.content_length() {
216            let content_length = content_length.to_string();
217            request_builder = _header_serialization_settings.set_default_header(request_builder, ::http::header::CONTENT_LENGTH, &content_length);
218        }
219        ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
220    }
221}
222#[derive(Debug)]
223struct RestoreFromClusterSnapshotEndpointParamsInterceptor;
224
225impl ::aws_smithy_runtime_api::client::interceptors::Intercept for RestoreFromClusterSnapshotEndpointParamsInterceptor {
226    fn name(&self) -> &'static str {
227        "RestoreFromClusterSnapshotEndpointParamsInterceptor"
228    }
229
230    fn read_before_execution(
231        &self,
232        context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
233            '_,
234            ::aws_smithy_runtime_api::client::interceptors::context::Input,
235            ::aws_smithy_runtime_api::client::interceptors::context::Output,
236            ::aws_smithy_runtime_api::client::interceptors::context::Error,
237        >,
238        cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
239    ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
240        let _input = context
241            .input()
242            .downcast_ref::<RestoreFromClusterSnapshotInput>()
243            .ok_or("failed to downcast to RestoreFromClusterSnapshotInput")?;
244
245        let params = crate::config::endpoint::Params::builder()
246            .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
247            .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
248            .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
249            .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
250            .build()
251            .map_err(|err| {
252                ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
253            })?;
254        cfg.interceptor_state()
255            .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
256        ::std::result::Result::Ok(())
257    }
258}
259
260// The get_* functions below are generated from JMESPath expressions in the
261// operationContextParams trait. They target the operation's input shape.
262
263/// Error type for the `RestoreFromClusterSnapshotError` operation.
264#[non_exhaustive]
265#[derive(::std::fmt::Debug)]
266pub enum RestoreFromClusterSnapshotError {
267    /// <p>The owner of the specified snapshot has not authorized your account to access the snapshot.</p>
268    AccessToSnapshotDeniedFault(crate::types::error::AccessToSnapshotDeniedFault),
269    /// <p>The account already has a cluster with the given identifier.</p>
270    ClusterAlreadyExistsFault(crate::types::error::ClusterAlreadyExistsFault),
271    /// <p>The parameter group name does not refer to an existing parameter group.</p>
272    ClusterParameterGroupNotFoundFault(crate::types::error::ClusterParameterGroupNotFoundFault),
273    /// <p>The request would exceed the allowed number of cluster instances for this account. For information about increasing your quota, go to <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/amazon-redshift-limits.html">Limits in Amazon Redshift</a> in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
274    ClusterQuotaExceededFault(crate::types::error::ClusterQuotaExceededFault),
275    /// <p>The cluster security group name does not refer to an existing cluster security group.</p>
276    ClusterSecurityGroupNotFoundFault(crate::types::error::ClusterSecurityGroupNotFoundFault),
277    /// <p>The snapshot identifier does not refer to an existing cluster snapshot.</p>
278    ClusterSnapshotNotFoundFault(crate::types::error::ClusterSnapshotNotFoundFault),
279    /// <p>The cluster subnet group name does not refer to an existing cluster subnet group.</p>
280    ClusterSubnetGroupNotFoundFault(crate::types::error::ClusterSubnetGroupNotFoundFault),
281    /// <p>The request cannot be completed because a dependent service is throttling requests made by Amazon Redshift on your behalf. Wait and retry the request.</p>
282    DependentServiceRequestThrottlingFault(crate::types::error::DependentServiceRequestThrottlingFault),
283    /// <p>Your request cannot be completed because a dependent internal service is temporarily unavailable. Wait 30 to 60 seconds and try again.</p>
284    DependentServiceUnavailableFault(crate::types::error::DependentServiceUnavailableFault),
285    /// <p>There is no Amazon Redshift HSM client certificate with the specified identifier.</p>
286    HsmClientCertificateNotFoundFault(crate::types::error::HsmClientCertificateNotFoundFault),
287    /// <p>There is no Amazon Redshift HSM configuration with the specified identifier.</p>
288    HsmConfigurationNotFoundFault(crate::types::error::HsmConfigurationNotFoundFault),
289    /// <p>The number of nodes specified exceeds the allotted capacity of the cluster.</p>
290    InsufficientClusterCapacityFault(crate::types::error::InsufficientClusterCapacityFault),
291    /// <p>The specified cluster snapshot is not in the <code>available</code> state, or other accounts are authorized to access the snapshot.</p>
292    InvalidClusterSnapshotStateFault(crate::types::error::InvalidClusterSnapshotStateFault),
293    /// <p>The cluster subnet group cannot be deleted because it is in use.</p>
294    InvalidClusterSubnetGroupStateFault(crate::types::error::InvalidClusterSubnetGroupStateFault),
295    /// <p>The provided cluster track name is not valid.</p>
296    InvalidClusterTrackFault(crate::types::error::InvalidClusterTrackFault),
297    /// <p>The Elastic IP (EIP) is invalid or cannot be found.</p>
298    InvalidElasticIpFault(crate::types::error::InvalidElasticIpFault),
299    /// <p>Indicates that the Reserved Node being exchanged is not in an active state.</p>
300    InvalidReservedNodeStateFault(crate::types::error::InvalidReservedNodeStateFault),
301    /// <p>The restore is invalid.</p>
302    InvalidRestoreFault(crate::types::error::InvalidRestoreFault),
303    /// <p>The requested subnet is not valid, or not all of the subnets are in the same VPC.</p>
304    InvalidSubnet(crate::types::error::InvalidSubnet),
305    /// <p>The tag is invalid.</p>
306    InvalidTagFault(crate::types::error::InvalidTagFault),
307    /// <p>The cluster subnet group does not cover all Availability Zones.</p>
308    InvalidVpcNetworkStateFault(crate::types::error::InvalidVpcNetworkStateFault),
309    /// <p>There are no subnets in your VPC with associated IPv6 CIDR blocks. To use dual-stack mode, associate an IPv6 CIDR block with each subnet in your VPC.</p>
310    Ipv6CidrBlockNotFoundFault(crate::types::error::Ipv6CidrBlockNotFoundFault),
311    /// <p>The encryption key has exceeded its grant limit in Amazon Web Services KMS.</p>
312    LimitExceededFault(crate::types::error::LimitExceededFault),
313    /// <p>The operation would exceed the number of nodes allowed for a cluster.</p>
314    NumberOfNodesPerClusterLimitExceededFault(crate::types::error::NumberOfNodesPerClusterLimitExceededFault),
315    /// <p>The operation would exceed the number of nodes allotted to the account. For information about increasing your quota, go to <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/amazon-redshift-limits.html">Limits in Amazon Redshift</a> in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
316    NumberOfNodesQuotaExceededFault(crate::types::error::NumberOfNodesQuotaExceededFault),
317    /// <p>User already has a reservation with the given identifier.</p>
318    ReservedNodeAlreadyExistsFault(crate::types::error::ReservedNodeAlreadyExistsFault),
319    /// <p>Indicates that the reserved node has already been exchanged.</p>
320    ReservedNodeAlreadyMigratedFault(crate::types::error::ReservedNodeAlreadyMigratedFault),
321    /// <p>The specified reserved compute node not found.</p>
322    ReservedNodeNotFoundFault(crate::types::error::ReservedNodeNotFoundFault),
323    /// <p>Specified offering does not exist.</p>
324    ReservedNodeOfferingNotFoundFault(crate::types::error::ReservedNodeOfferingNotFoundFault),
325    /// <p>We could not find the specified snapshot schedule.</p>
326    SnapshotScheduleNotFoundFault(crate::types::error::SnapshotScheduleNotFoundFault),
327    /// <p>You have exceeded the number of tags allowed.</p>
328    TagLimitExceededFault(crate::types::error::TagLimitExceededFault),
329    /// <p>Your account is not authorized to perform the requested operation.</p>
330    UnauthorizedOperation(crate::types::error::UnauthorizedOperation),
331    /// <p>The requested operation isn't supported.</p>
332    UnsupportedOperationFault(crate::types::error::UnsupportedOperationFault),
333    /// An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
334    #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
335    variable wildcard pattern and check `.code()`:
336     \
337    &nbsp;&nbsp;&nbsp;`err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
338     \
339    See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-RestoreFromClusterSnapshotError) for what information is available for the error.")]
340    Unhandled(crate::error::sealed_unhandled::Unhandled),
341}
342impl RestoreFromClusterSnapshotError {
343    /// Creates the `RestoreFromClusterSnapshotError::Unhandled` variant from any error type.
344    pub fn unhandled(
345        err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
346    ) -> Self {
347        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
348            source: err.into(),
349            meta: ::std::default::Default::default(),
350        })
351    }
352
353    /// Creates the `RestoreFromClusterSnapshotError::Unhandled` variant from an [`ErrorMetadata`](::aws_smithy_types::error::ErrorMetadata).
354    pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
355        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
356            source: err.clone().into(),
357            meta: err,
358        })
359    }
360    ///
361    /// Returns error metadata, which includes the error code, message,
362    /// request ID, and potentially additional information.
363    ///
364    pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
365        match self {
366            Self::AccessToSnapshotDeniedFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
367            Self::ClusterAlreadyExistsFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
368            Self::ClusterParameterGroupNotFoundFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
369            Self::ClusterQuotaExceededFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
370            Self::ClusterSecurityGroupNotFoundFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
371            Self::ClusterSnapshotNotFoundFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
372            Self::ClusterSubnetGroupNotFoundFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
373            Self::DependentServiceRequestThrottlingFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
374            Self::DependentServiceUnavailableFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
375            Self::HsmClientCertificateNotFoundFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
376            Self::HsmConfigurationNotFoundFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
377            Self::InsufficientClusterCapacityFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
378            Self::InvalidClusterSnapshotStateFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
379            Self::InvalidClusterSubnetGroupStateFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
380            Self::InvalidClusterTrackFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
381            Self::InvalidElasticIpFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
382            Self::InvalidReservedNodeStateFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
383            Self::InvalidRestoreFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
384            Self::InvalidSubnet(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
385            Self::InvalidTagFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
386            Self::InvalidVpcNetworkStateFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
387            Self::Ipv6CidrBlockNotFoundFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
388            Self::LimitExceededFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
389            Self::NumberOfNodesPerClusterLimitExceededFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
390            Self::NumberOfNodesQuotaExceededFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
391            Self::ReservedNodeAlreadyExistsFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
392            Self::ReservedNodeAlreadyMigratedFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
393            Self::ReservedNodeNotFoundFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
394            Self::ReservedNodeOfferingNotFoundFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
395            Self::SnapshotScheduleNotFoundFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
396            Self::TagLimitExceededFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
397            Self::UnauthorizedOperation(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
398            Self::UnsupportedOperationFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
399            Self::Unhandled(e) => &e.meta,
400        }
401    }
402    /// Returns `true` if the error kind is `RestoreFromClusterSnapshotError::AccessToSnapshotDeniedFault`.
403    pub fn is_access_to_snapshot_denied_fault(&self) -> bool {
404        matches!(self, Self::AccessToSnapshotDeniedFault(_))
405    }
406    /// Returns `true` if the error kind is `RestoreFromClusterSnapshotError::ClusterAlreadyExistsFault`.
407    pub fn is_cluster_already_exists_fault(&self) -> bool {
408        matches!(self, Self::ClusterAlreadyExistsFault(_))
409    }
410    /// Returns `true` if the error kind is `RestoreFromClusterSnapshotError::ClusterParameterGroupNotFoundFault`.
411    pub fn is_cluster_parameter_group_not_found_fault(&self) -> bool {
412        matches!(self, Self::ClusterParameterGroupNotFoundFault(_))
413    }
414    /// Returns `true` if the error kind is `RestoreFromClusterSnapshotError::ClusterQuotaExceededFault`.
415    pub fn is_cluster_quota_exceeded_fault(&self) -> bool {
416        matches!(self, Self::ClusterQuotaExceededFault(_))
417    }
418    /// Returns `true` if the error kind is `RestoreFromClusterSnapshotError::ClusterSecurityGroupNotFoundFault`.
419    pub fn is_cluster_security_group_not_found_fault(&self) -> bool {
420        matches!(self, Self::ClusterSecurityGroupNotFoundFault(_))
421    }
422    /// Returns `true` if the error kind is `RestoreFromClusterSnapshotError::ClusterSnapshotNotFoundFault`.
423    pub fn is_cluster_snapshot_not_found_fault(&self) -> bool {
424        matches!(self, Self::ClusterSnapshotNotFoundFault(_))
425    }
426    /// Returns `true` if the error kind is `RestoreFromClusterSnapshotError::ClusterSubnetGroupNotFoundFault`.
427    pub fn is_cluster_subnet_group_not_found_fault(&self) -> bool {
428        matches!(self, Self::ClusterSubnetGroupNotFoundFault(_))
429    }
430    /// Returns `true` if the error kind is `RestoreFromClusterSnapshotError::DependentServiceRequestThrottlingFault`.
431    pub fn is_dependent_service_request_throttling_fault(&self) -> bool {
432        matches!(self, Self::DependentServiceRequestThrottlingFault(_))
433    }
434    /// Returns `true` if the error kind is `RestoreFromClusterSnapshotError::DependentServiceUnavailableFault`.
435    pub fn is_dependent_service_unavailable_fault(&self) -> bool {
436        matches!(self, Self::DependentServiceUnavailableFault(_))
437    }
438    /// Returns `true` if the error kind is `RestoreFromClusterSnapshotError::HsmClientCertificateNotFoundFault`.
439    pub fn is_hsm_client_certificate_not_found_fault(&self) -> bool {
440        matches!(self, Self::HsmClientCertificateNotFoundFault(_))
441    }
442    /// Returns `true` if the error kind is `RestoreFromClusterSnapshotError::HsmConfigurationNotFoundFault`.
443    pub fn is_hsm_configuration_not_found_fault(&self) -> bool {
444        matches!(self, Self::HsmConfigurationNotFoundFault(_))
445    }
446    /// Returns `true` if the error kind is `RestoreFromClusterSnapshotError::InsufficientClusterCapacityFault`.
447    pub fn is_insufficient_cluster_capacity_fault(&self) -> bool {
448        matches!(self, Self::InsufficientClusterCapacityFault(_))
449    }
450    /// Returns `true` if the error kind is `RestoreFromClusterSnapshotError::InvalidClusterSnapshotStateFault`.
451    pub fn is_invalid_cluster_snapshot_state_fault(&self) -> bool {
452        matches!(self, Self::InvalidClusterSnapshotStateFault(_))
453    }
454    /// Returns `true` if the error kind is `RestoreFromClusterSnapshotError::InvalidClusterSubnetGroupStateFault`.
455    pub fn is_invalid_cluster_subnet_group_state_fault(&self) -> bool {
456        matches!(self, Self::InvalidClusterSubnetGroupStateFault(_))
457    }
458    /// Returns `true` if the error kind is `RestoreFromClusterSnapshotError::InvalidClusterTrackFault`.
459    pub fn is_invalid_cluster_track_fault(&self) -> bool {
460        matches!(self, Self::InvalidClusterTrackFault(_))
461    }
462    /// Returns `true` if the error kind is `RestoreFromClusterSnapshotError::InvalidElasticIpFault`.
463    pub fn is_invalid_elastic_ip_fault(&self) -> bool {
464        matches!(self, Self::InvalidElasticIpFault(_))
465    }
466    /// Returns `true` if the error kind is `RestoreFromClusterSnapshotError::InvalidReservedNodeStateFault`.
467    pub fn is_invalid_reserved_node_state_fault(&self) -> bool {
468        matches!(self, Self::InvalidReservedNodeStateFault(_))
469    }
470    /// Returns `true` if the error kind is `RestoreFromClusterSnapshotError::InvalidRestoreFault`.
471    pub fn is_invalid_restore_fault(&self) -> bool {
472        matches!(self, Self::InvalidRestoreFault(_))
473    }
474    /// Returns `true` if the error kind is `RestoreFromClusterSnapshotError::InvalidSubnet`.
475    pub fn is_invalid_subnet(&self) -> bool {
476        matches!(self, Self::InvalidSubnet(_))
477    }
478    /// Returns `true` if the error kind is `RestoreFromClusterSnapshotError::InvalidTagFault`.
479    pub fn is_invalid_tag_fault(&self) -> bool {
480        matches!(self, Self::InvalidTagFault(_))
481    }
482    /// Returns `true` if the error kind is `RestoreFromClusterSnapshotError::InvalidVpcNetworkStateFault`.
483    pub fn is_invalid_vpc_network_state_fault(&self) -> bool {
484        matches!(self, Self::InvalidVpcNetworkStateFault(_))
485    }
486    /// Returns `true` if the error kind is `RestoreFromClusterSnapshotError::Ipv6CidrBlockNotFoundFault`.
487    pub fn is_ipv6_cidr_block_not_found_fault(&self) -> bool {
488        matches!(self, Self::Ipv6CidrBlockNotFoundFault(_))
489    }
490    /// Returns `true` if the error kind is `RestoreFromClusterSnapshotError::LimitExceededFault`.
491    pub fn is_limit_exceeded_fault(&self) -> bool {
492        matches!(self, Self::LimitExceededFault(_))
493    }
494    /// Returns `true` if the error kind is `RestoreFromClusterSnapshotError::NumberOfNodesPerClusterLimitExceededFault`.
495    pub fn is_number_of_nodes_per_cluster_limit_exceeded_fault(&self) -> bool {
496        matches!(self, Self::NumberOfNodesPerClusterLimitExceededFault(_))
497    }
498    /// Returns `true` if the error kind is `RestoreFromClusterSnapshotError::NumberOfNodesQuotaExceededFault`.
499    pub fn is_number_of_nodes_quota_exceeded_fault(&self) -> bool {
500        matches!(self, Self::NumberOfNodesQuotaExceededFault(_))
501    }
502    /// Returns `true` if the error kind is `RestoreFromClusterSnapshotError::ReservedNodeAlreadyExistsFault`.
503    pub fn is_reserved_node_already_exists_fault(&self) -> bool {
504        matches!(self, Self::ReservedNodeAlreadyExistsFault(_))
505    }
506    /// Returns `true` if the error kind is `RestoreFromClusterSnapshotError::ReservedNodeAlreadyMigratedFault`.
507    pub fn is_reserved_node_already_migrated_fault(&self) -> bool {
508        matches!(self, Self::ReservedNodeAlreadyMigratedFault(_))
509    }
510    /// Returns `true` if the error kind is `RestoreFromClusterSnapshotError::ReservedNodeNotFoundFault`.
511    pub fn is_reserved_node_not_found_fault(&self) -> bool {
512        matches!(self, Self::ReservedNodeNotFoundFault(_))
513    }
514    /// Returns `true` if the error kind is `RestoreFromClusterSnapshotError::ReservedNodeOfferingNotFoundFault`.
515    pub fn is_reserved_node_offering_not_found_fault(&self) -> bool {
516        matches!(self, Self::ReservedNodeOfferingNotFoundFault(_))
517    }
518    /// Returns `true` if the error kind is `RestoreFromClusterSnapshotError::SnapshotScheduleNotFoundFault`.
519    pub fn is_snapshot_schedule_not_found_fault(&self) -> bool {
520        matches!(self, Self::SnapshotScheduleNotFoundFault(_))
521    }
522    /// Returns `true` if the error kind is `RestoreFromClusterSnapshotError::TagLimitExceededFault`.
523    pub fn is_tag_limit_exceeded_fault(&self) -> bool {
524        matches!(self, Self::TagLimitExceededFault(_))
525    }
526    /// Returns `true` if the error kind is `RestoreFromClusterSnapshotError::UnauthorizedOperation`.
527    pub fn is_unauthorized_operation(&self) -> bool {
528        matches!(self, Self::UnauthorizedOperation(_))
529    }
530    /// Returns `true` if the error kind is `RestoreFromClusterSnapshotError::UnsupportedOperationFault`.
531    pub fn is_unsupported_operation_fault(&self) -> bool {
532        matches!(self, Self::UnsupportedOperationFault(_))
533    }
534}
535impl ::std::error::Error for RestoreFromClusterSnapshotError {
536    fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
537        match self {
538            Self::AccessToSnapshotDeniedFault(_inner) => ::std::option::Option::Some(_inner),
539            Self::ClusterAlreadyExistsFault(_inner) => ::std::option::Option::Some(_inner),
540            Self::ClusterParameterGroupNotFoundFault(_inner) => ::std::option::Option::Some(_inner),
541            Self::ClusterQuotaExceededFault(_inner) => ::std::option::Option::Some(_inner),
542            Self::ClusterSecurityGroupNotFoundFault(_inner) => ::std::option::Option::Some(_inner),
543            Self::ClusterSnapshotNotFoundFault(_inner) => ::std::option::Option::Some(_inner),
544            Self::ClusterSubnetGroupNotFoundFault(_inner) => ::std::option::Option::Some(_inner),
545            Self::DependentServiceRequestThrottlingFault(_inner) => ::std::option::Option::Some(_inner),
546            Self::DependentServiceUnavailableFault(_inner) => ::std::option::Option::Some(_inner),
547            Self::HsmClientCertificateNotFoundFault(_inner) => ::std::option::Option::Some(_inner),
548            Self::HsmConfigurationNotFoundFault(_inner) => ::std::option::Option::Some(_inner),
549            Self::InsufficientClusterCapacityFault(_inner) => ::std::option::Option::Some(_inner),
550            Self::InvalidClusterSnapshotStateFault(_inner) => ::std::option::Option::Some(_inner),
551            Self::InvalidClusterSubnetGroupStateFault(_inner) => ::std::option::Option::Some(_inner),
552            Self::InvalidClusterTrackFault(_inner) => ::std::option::Option::Some(_inner),
553            Self::InvalidElasticIpFault(_inner) => ::std::option::Option::Some(_inner),
554            Self::InvalidReservedNodeStateFault(_inner) => ::std::option::Option::Some(_inner),
555            Self::InvalidRestoreFault(_inner) => ::std::option::Option::Some(_inner),
556            Self::InvalidSubnet(_inner) => ::std::option::Option::Some(_inner),
557            Self::InvalidTagFault(_inner) => ::std::option::Option::Some(_inner),
558            Self::InvalidVpcNetworkStateFault(_inner) => ::std::option::Option::Some(_inner),
559            Self::Ipv6CidrBlockNotFoundFault(_inner) => ::std::option::Option::Some(_inner),
560            Self::LimitExceededFault(_inner) => ::std::option::Option::Some(_inner),
561            Self::NumberOfNodesPerClusterLimitExceededFault(_inner) => ::std::option::Option::Some(_inner),
562            Self::NumberOfNodesQuotaExceededFault(_inner) => ::std::option::Option::Some(_inner),
563            Self::ReservedNodeAlreadyExistsFault(_inner) => ::std::option::Option::Some(_inner),
564            Self::ReservedNodeAlreadyMigratedFault(_inner) => ::std::option::Option::Some(_inner),
565            Self::ReservedNodeNotFoundFault(_inner) => ::std::option::Option::Some(_inner),
566            Self::ReservedNodeOfferingNotFoundFault(_inner) => ::std::option::Option::Some(_inner),
567            Self::SnapshotScheduleNotFoundFault(_inner) => ::std::option::Option::Some(_inner),
568            Self::TagLimitExceededFault(_inner) => ::std::option::Option::Some(_inner),
569            Self::UnauthorizedOperation(_inner) => ::std::option::Option::Some(_inner),
570            Self::UnsupportedOperationFault(_inner) => ::std::option::Option::Some(_inner),
571            Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
572        }
573    }
574}
575impl ::std::fmt::Display for RestoreFromClusterSnapshotError {
576    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
577        match self {
578            Self::AccessToSnapshotDeniedFault(_inner) => _inner.fmt(f),
579            Self::ClusterAlreadyExistsFault(_inner) => _inner.fmt(f),
580            Self::ClusterParameterGroupNotFoundFault(_inner) => _inner.fmt(f),
581            Self::ClusterQuotaExceededFault(_inner) => _inner.fmt(f),
582            Self::ClusterSecurityGroupNotFoundFault(_inner) => _inner.fmt(f),
583            Self::ClusterSnapshotNotFoundFault(_inner) => _inner.fmt(f),
584            Self::ClusterSubnetGroupNotFoundFault(_inner) => _inner.fmt(f),
585            Self::DependentServiceRequestThrottlingFault(_inner) => _inner.fmt(f),
586            Self::DependentServiceUnavailableFault(_inner) => _inner.fmt(f),
587            Self::HsmClientCertificateNotFoundFault(_inner) => _inner.fmt(f),
588            Self::HsmConfigurationNotFoundFault(_inner) => _inner.fmt(f),
589            Self::InsufficientClusterCapacityFault(_inner) => _inner.fmt(f),
590            Self::InvalidClusterSnapshotStateFault(_inner) => _inner.fmt(f),
591            Self::InvalidClusterSubnetGroupStateFault(_inner) => _inner.fmt(f),
592            Self::InvalidClusterTrackFault(_inner) => _inner.fmt(f),
593            Self::InvalidElasticIpFault(_inner) => _inner.fmt(f),
594            Self::InvalidReservedNodeStateFault(_inner) => _inner.fmt(f),
595            Self::InvalidRestoreFault(_inner) => _inner.fmt(f),
596            Self::InvalidSubnet(_inner) => _inner.fmt(f),
597            Self::InvalidTagFault(_inner) => _inner.fmt(f),
598            Self::InvalidVpcNetworkStateFault(_inner) => _inner.fmt(f),
599            Self::Ipv6CidrBlockNotFoundFault(_inner) => _inner.fmt(f),
600            Self::LimitExceededFault(_inner) => _inner.fmt(f),
601            Self::NumberOfNodesPerClusterLimitExceededFault(_inner) => _inner.fmt(f),
602            Self::NumberOfNodesQuotaExceededFault(_inner) => _inner.fmt(f),
603            Self::ReservedNodeAlreadyExistsFault(_inner) => _inner.fmt(f),
604            Self::ReservedNodeAlreadyMigratedFault(_inner) => _inner.fmt(f),
605            Self::ReservedNodeNotFoundFault(_inner) => _inner.fmt(f),
606            Self::ReservedNodeOfferingNotFoundFault(_inner) => _inner.fmt(f),
607            Self::SnapshotScheduleNotFoundFault(_inner) => _inner.fmt(f),
608            Self::TagLimitExceededFault(_inner) => _inner.fmt(f),
609            Self::UnauthorizedOperation(_inner) => _inner.fmt(f),
610            Self::UnsupportedOperationFault(_inner) => _inner.fmt(f),
611            Self::Unhandled(_inner) => {
612                if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
613                    write!(f, "unhandled error ({code})")
614                } else {
615                    f.write_str("unhandled error")
616                }
617            }
618        }
619    }
620}
621impl ::aws_smithy_types::retry::ProvideErrorKind for RestoreFromClusterSnapshotError {
622    fn code(&self) -> ::std::option::Option<&str> {
623        ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
624    }
625    fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
626        ::std::option::Option::None
627    }
628}
629impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for RestoreFromClusterSnapshotError {
630    fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
631        match self {
632            Self::AccessToSnapshotDeniedFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
633            Self::ClusterAlreadyExistsFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
634            Self::ClusterParameterGroupNotFoundFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
635            Self::ClusterQuotaExceededFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
636            Self::ClusterSecurityGroupNotFoundFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
637            Self::ClusterSnapshotNotFoundFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
638            Self::ClusterSubnetGroupNotFoundFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
639            Self::DependentServiceRequestThrottlingFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
640            Self::DependentServiceUnavailableFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
641            Self::HsmClientCertificateNotFoundFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
642            Self::HsmConfigurationNotFoundFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
643            Self::InsufficientClusterCapacityFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
644            Self::InvalidClusterSnapshotStateFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
645            Self::InvalidClusterSubnetGroupStateFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
646            Self::InvalidClusterTrackFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
647            Self::InvalidElasticIpFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
648            Self::InvalidReservedNodeStateFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
649            Self::InvalidRestoreFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
650            Self::InvalidSubnet(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
651            Self::InvalidTagFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
652            Self::InvalidVpcNetworkStateFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
653            Self::Ipv6CidrBlockNotFoundFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
654            Self::LimitExceededFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
655            Self::NumberOfNodesPerClusterLimitExceededFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
656            Self::NumberOfNodesQuotaExceededFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
657            Self::ReservedNodeAlreadyExistsFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
658            Self::ReservedNodeAlreadyMigratedFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
659            Self::ReservedNodeNotFoundFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
660            Self::ReservedNodeOfferingNotFoundFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
661            Self::SnapshotScheduleNotFoundFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
662            Self::TagLimitExceededFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
663            Self::UnauthorizedOperation(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
664            Self::UnsupportedOperationFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
665            Self::Unhandled(_inner) => &_inner.meta,
666        }
667    }
668}
669impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for RestoreFromClusterSnapshotError {
670    fn create_unhandled_error(
671        source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
672        meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
673    ) -> Self {
674        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
675            source,
676            meta: meta.unwrap_or_default(),
677        })
678    }
679}
680impl ::aws_types::request_id::RequestId for crate::operation::restore_from_cluster_snapshot::RestoreFromClusterSnapshotError {
681    fn request_id(&self) -> Option<&str> {
682        self.meta().request_id()
683    }
684}
685
686pub use crate::operation::restore_from_cluster_snapshot::_restore_from_cluster_snapshot_output::RestoreFromClusterSnapshotOutput;
687
688pub use crate::operation::restore_from_cluster_snapshot::_restore_from_cluster_snapshot_input::RestoreFromClusterSnapshotInput;
689
690mod _restore_from_cluster_snapshot_input;
691
692mod _restore_from_cluster_snapshot_output;
693
694/// Builders
695pub mod builders;