Skip to main content

aws_sdk_cloudcontrol/operation/
update_resource.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2/// Orchestration and serialization glue logic for `UpdateResource`.
3#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct UpdateResource;
6impl UpdateResource {
7    /// Creates a new `UpdateResource`
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::update_resource::UpdateResourceInput,
14    ) -> ::std::result::Result<
15        crate::operation::update_resource::UpdateResourceOutput,
16        ::aws_smithy_runtime_api::client::result::SdkError<
17            crate::operation::update_resource::UpdateResourceError,
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::update_resource::UpdateResourceError>()
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::update_resource::UpdateResourceOutput>()
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::update_resource::UpdateResourceInput,
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("CloudControl", "UpdateResource", input, runtime_plugins, stop_point)
55            // Create a parent span for the entire operation. Includes a random, internal-only,
56            // seven-digit ID for the operation orchestration so that it can be correlated in the logs.
57            .instrument(::tracing::debug_span!(
58                "CloudControl.UpdateResource",
59                "rpc.service" = "CloudControl",
60                "rpc.method" = "UpdateResource",
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::update_resource::UpdateResourceInput = input.downcast_mut().expect("correct type");
76                if input.client_token.is_none() {
77                    input.client_token = ::std::option::Option::Some(token_provider.make_idempotency_token());
78                }
79            },
80        ));
81        if let ::std::option::Option::Some(config_override) = config_override {
82            for plugin in config_override.runtime_plugins.iter().cloned() {
83                runtime_plugins = runtime_plugins.with_operation_plugin(plugin);
84            }
85            runtime_plugins = runtime_plugins.with_operation_plugin(crate::config::ConfigOverrideRuntimePlugin::new(
86                config_override,
87                client_config.config.clone(),
88                &client_config.runtime_components,
89            ));
90        }
91        runtime_plugins
92    }
93}
94impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for UpdateResource {
95    fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
96        let mut cfg = ::aws_smithy_types::config_bag::Layer::new("UpdateResource");
97
98        cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
99            UpdateResourceRequestSerializer,
100        ));
101        cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
102            UpdateResourceResponseDeserializer,
103        ));
104
105        cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
106            crate::config::auth::Params::builder()
107                .operation_name("UpdateResource")
108                .build()
109                .expect("required fields set"),
110        ));
111
112        cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::SensitiveOutput);
113        cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new(
114            "UpdateResource",
115            "CloudControl",
116        ));
117        let mut signing_options = ::aws_runtime::auth::SigningOptions::default();
118        signing_options.double_uri_encode = true;
119        signing_options.content_sha256_header = false;
120        signing_options.normalize_uri_path = true;
121        signing_options.payload_override = None;
122
123        cfg.store_put(::aws_runtime::auth::SigV4OperationSigningConfig {
124            signing_options,
125            ..::std::default::Default::default()
126        });
127
128        ::std::option::Option::Some(cfg.freeze())
129    }
130
131    fn runtime_components(
132        &self,
133        _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
134    ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
135        #[allow(unused_mut)]
136        let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("UpdateResource")
137            .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
138                UpdateResourceTelemetryInputCaptureInterceptor,
139            ))
140            .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
141                ::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default(),
142            ))
143            .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
144                UpdateResourceEndpointParamsInterceptor,
145            ))
146            .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
147                crate::operation::update_resource::UpdateResourceError,
148            >::new())
149            .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
150                crate::operation::update_resource::UpdateResourceError,
151            >::new())
152            .with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<
153                crate::operation::update_resource::UpdateResourceError,
154            >::new())
155            .with_retry_classifier(::aws_runtime::service_clock_skew::ServiceClockSkewClassifier::<
156                crate::operation::update_resource::UpdateResourceError,
157            >::new());
158
159        ::std::borrow::Cow::Owned(rcb)
160    }
161}
162
163#[derive(Debug)]
164struct UpdateResourceTelemetryInputCaptureInterceptor;
165
166#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
167impl ::aws_smithy_runtime_api::client::interceptors::Intercept for UpdateResourceTelemetryInputCaptureInterceptor {
168    fn name(&self) -> &'static str {
169        "UpdateResourceTelemetryInputCaptureInterceptor"
170    }
171
172    fn read_before_execution(
173        &self,
174        context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
175            '_,
176            ::aws_smithy_runtime_api::client::interceptors::context::Input,
177            ::aws_smithy_runtime_api::client::interceptors::context::Output,
178            ::aws_smithy_runtime_api::client::interceptors::context::Error,
179        >,
180        cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
181    ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
182        // Nothing to do unless the customer opted in by naming members to record.
183        let ::std::option::Option::Some(requested) = cfg
184            .load::<::aws_smithy_types::telemetry::RequestedTelemetryAttributes>()
185            .filter(|r| !r.is_empty())
186        else {
187            return ::std::result::Result::Ok(());
188        };
189
190        let ::std::option::Option::Some(input) = context.input().downcast_ref::<UpdateResourceInput>() else {
191            // A mismatched input is not this interceptor's concern; skip quietly.
192            return ::std::result::Result::Ok(());
193        };
194
195        let mut captured = ::aws_smithy_types::telemetry::CapturedTelemetryAttributes::default();
196        if requested.should_capture("TypeName") {
197            if let ::std::option::Option::Some(value) = input.type_name.as_deref() {
198                captured.insert("TypeName", value);
199            }
200        }
201        if requested.should_capture("TypeVersionId") {
202            if let ::std::option::Option::Some(value) = input.type_version_id.as_deref() {
203                captured.insert("TypeVersionId", value);
204            }
205        }
206        if requested.should_capture("RoleArn") {
207            if let ::std::option::Option::Some(value) = input.role_arn.as_deref() {
208                captured.insert("RoleArn", value);
209            }
210        }
211        if requested.should_capture("ClientToken") {
212            if let ::std::option::Option::Some(value) = input.client_token.as_deref() {
213                captured.insert("ClientToken", value);
214            }
215        }
216        if requested.should_capture("Identifier") {
217            if let ::std::option::Option::Some(value) = input.identifier.as_deref() {
218                captured.insert("Identifier", value);
219            }
220        }
221
222        cfg.interceptor_state().store_put(captured);
223        ::std::result::Result::Ok(())
224    }
225}
226#[derive(Debug)]
227struct UpdateResourceResponseDeserializer;
228impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for UpdateResourceResponseDeserializer {
229    fn deserialize_nonstreaming_with_config(
230        &self,
231        response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
232        _cfg: &::aws_smithy_types::config_bag::ConfigBag,
233    ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
234        let (success, status) = (response.status().is_success(), response.status().as_u16());
235        let headers = response.headers();
236        let body = response.body().bytes().expect("body loaded");
237        #[allow(unused_mut)]
238        let mut force_error = false;
239        ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
240        let parse_result = if !success && status != 200 || force_error {
241            crate::protocol_serde::shape_update_resource::de_update_resource_http_error(status, headers, body)
242        } else {
243            crate::protocol_serde::shape_update_resource::de_update_resource_http_response(status, headers, body)
244        };
245        crate::protocol_serde::type_erase_result(parse_result)
246    }
247}
248#[derive(Debug)]
249struct UpdateResourceRequestSerializer;
250impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for UpdateResourceRequestSerializer {
251    #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
252    fn serialize_input(
253        &self,
254        input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
255        _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
256    ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
257        let input = input
258            .downcast::<crate::operation::update_resource::UpdateResourceInput>()
259            .expect("correct type");
260        let _header_serialization_settings = _cfg
261            .load::<crate::serialization_settings::HeaderSerializationSettings>()
262            .cloned()
263            .unwrap_or_default();
264        let mut request_builder = {
265            #[allow(clippy::uninlined_format_args)]
266            fn uri_base(
267                _input: &crate::operation::update_resource::UpdateResourceInput,
268                output: &mut ::std::string::String,
269            ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
270                use ::std::fmt::Write as _;
271                ::std::write!(output, "/").expect("formatting should succeed");
272                ::std::result::Result::Ok(())
273            }
274            #[allow(clippy::unnecessary_wraps)]
275            fn update_http_builder(
276                input: &crate::operation::update_resource::UpdateResourceInput,
277                builder: ::http_1x::request::Builder,
278            ) -> ::std::result::Result<::http_1x::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
279                let mut uri = ::std::string::String::new();
280                uri_base(input, &mut uri)?;
281                ::std::result::Result::Ok(builder.method("POST").uri(uri))
282            }
283            let mut builder = update_http_builder(&input, ::http_1x::request::Builder::new())?;
284            builder = _header_serialization_settings.set_default_header(builder, ::http_1x::header::CONTENT_TYPE, "application/x-amz-json-1.0");
285            builder = _header_serialization_settings.set_default_header(
286                builder,
287                ::http_1x::header::HeaderName::from_static("x-amz-target"),
288                "CloudApiService.UpdateResource",
289            );
290            builder
291        };
292        let body = ::aws_smithy_types::body::SdkBody::from(crate::protocol_serde::shape_update_resource::ser_update_resource_input(&input)?);
293        if let Some(content_length) = body.content_length() {
294            let content_length = content_length.to_string();
295            request_builder = _header_serialization_settings.set_default_header(request_builder, ::http_1x::header::CONTENT_LENGTH, &content_length);
296        }
297        ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
298    }
299}
300#[derive(Debug)]
301struct UpdateResourceEndpointParamsInterceptor;
302
303#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
304impl ::aws_smithy_runtime_api::client::interceptors::Intercept for UpdateResourceEndpointParamsInterceptor {
305    fn name(&self) -> &'static str {
306        "UpdateResourceEndpointParamsInterceptor"
307    }
308
309    fn read_before_execution(
310        &self,
311        context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
312            '_,
313            ::aws_smithy_runtime_api::client::interceptors::context::Input,
314            ::aws_smithy_runtime_api::client::interceptors::context::Output,
315            ::aws_smithy_runtime_api::client::interceptors::context::Error,
316        >,
317        cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
318    ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
319        let _input = context
320            .input()
321            .downcast_ref::<UpdateResourceInput>()
322            .ok_or("failed to downcast to UpdateResourceInput")?;
323
324        let params = crate::config::endpoint::Params::builder()
325            .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
326            .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
327            .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
328            .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
329            .build()
330            .map_err(|err| {
331                ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
332            })?;
333        cfg.interceptor_state()
334            .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
335        ::std::result::Result::Ok(())
336    }
337}
338
339// The get_* functions below are generated from JMESPath expressions in the
340// operationContextParams trait. They target the operation's input shape.
341
342/// Error type for the `UpdateResourceError` operation.
343#[non_exhaustive]
344#[derive(::std::fmt::Debug)]
345pub enum UpdateResourceError {
346    /// <p>The resource with the name requested already exists.</p>
347    AlreadyExistsException(crate::types::error::AlreadyExistsException),
348    /// <p>The specified client token has already been used in another resource request.</p>
349    /// <p>It's best practice for client tokens to be unique for each resource operation request. However, client token expire after 36 hours.</p>
350    ClientTokenConflictException(crate::types::error::ClientTokenConflictException),
351    /// <p>Another resource operation is currently being performed on this resource.</p>
352    ConcurrentOperationException(crate::types::error::ConcurrentOperationException),
353    /// <p>The resource handler has returned that the downstream service generated an error that doesn't map to any other handler error code.</p>
354    GeneralServiceException(crate::types::error::GeneralServiceException),
355    /// <p>The resource handler has failed without a returning a more specific error code. This can include timeouts.</p>
356    HandlerFailureException(crate::types::error::HandlerFailureException),
357    /// <p>The resource handler has returned that an unexpected error occurred within the resource handler.</p>
358    HandlerInternalFailureException(crate::types::error::HandlerInternalFailureException),
359    /// <p>The resource handler has returned that the credentials provided by the user are invalid.</p>
360    InvalidCredentialsException(crate::types::error::InvalidCredentialsException),
361    /// <p>The resource handler has returned that invalid input from the user has generated a generic exception.</p>
362    InvalidRequestException(crate::types::error::InvalidRequestException),
363    /// <p>The resource handler has returned that the request couldn't be completed due to networking issues, such as a failure to receive a response from the server.</p>
364    NetworkFailureException(crate::types::error::NetworkFailureException),
365    /// <p>The resource handler has returned that the downstream resource failed to complete all of its ready-state checks.</p>
366    NotStabilizedException(crate::types::error::NotStabilizedException),
367    /// <p>One or more properties included in this resource operation are defined as create-only, and therefore can't be updated.</p>
368    NotUpdatableException(crate::types::error::NotUpdatableException),
369    /// <p>Cloud Control API hasn't received a valid response from the resource handler, due to a configuration error. This includes issues such as the resource handler returning an invalid response, or timing out.</p>
370    PrivateTypeException(crate::types::error::PrivateTypeException),
371    /// <p>The resource is temporarily unavailable to be acted upon. For example, if the resource is currently undergoing an operation and can't be acted upon until that operation is finished.</p>
372    ResourceConflictException(crate::types::error::ResourceConflictException),
373    /// <p>A resource with the specified identifier can't be found.</p>
374    ResourceNotFoundException(crate::types::error::ResourceNotFoundException),
375    /// <p>The resource handler has returned that the downstream service returned an internal error, typically with a <code>5XX HTTP</code> status code.</p>
376    ServiceInternalErrorException(crate::types::error::ServiceInternalErrorException),
377    /// <p>The resource handler has returned that a non-transient resource limit was reached on the service side.</p>
378    ServiceLimitExceededException(crate::types::error::ServiceLimitExceededException),
379    /// <p>The request was denied due to request throttling.</p>
380    ThrottlingException(crate::types::error::ThrottlingException),
381    /// <p>The specified extension doesn't exist in the CloudFormation registry.</p>
382    TypeNotFoundException(crate::types::error::TypeNotFoundException),
383    /// <p>The specified resource doesn't support this resource operation.</p>
384    UnsupportedActionException(crate::types::error::UnsupportedActionException),
385    /// An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
386    #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
387    variable wildcard pattern and check `.code()`:
388     \
389    &nbsp;&nbsp;&nbsp;`err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
390     \
391    See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-UpdateResourceError) for what information is available for the error.")]
392    Unhandled(crate::error::sealed_unhandled::Unhandled),
393}
394impl UpdateResourceError {
395    /// Creates the `UpdateResourceError::Unhandled` variant from any error type.
396    pub fn unhandled(
397        err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
398    ) -> Self {
399        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
400            source: err.into(),
401            meta: ::std::default::Default::default(),
402        })
403    }
404
405    /// Creates the `UpdateResourceError::Unhandled` variant from an [`ErrorMetadata`](::aws_smithy_types::error::ErrorMetadata).
406    pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
407        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
408            source: err.clone().into(),
409            meta: err,
410        })
411    }
412    ///
413    /// Returns error metadata, which includes the error code, message,
414    /// request ID, and potentially additional information.
415    ///
416    pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
417        match self {
418            Self::AlreadyExistsException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
419            Self::ClientTokenConflictException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
420            Self::ConcurrentOperationException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
421            Self::GeneralServiceException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
422            Self::HandlerFailureException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
423            Self::HandlerInternalFailureException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
424            Self::InvalidCredentialsException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
425            Self::InvalidRequestException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
426            Self::NetworkFailureException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
427            Self::NotStabilizedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
428            Self::NotUpdatableException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
429            Self::PrivateTypeException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
430            Self::ResourceConflictException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
431            Self::ResourceNotFoundException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
432            Self::ServiceInternalErrorException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
433            Self::ServiceLimitExceededException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
434            Self::ThrottlingException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
435            Self::TypeNotFoundException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
436            Self::UnsupportedActionException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
437            Self::Unhandled(e) => &e.meta,
438        }
439    }
440    /// Returns `true` if the error kind is `UpdateResourceError::AlreadyExistsException`.
441    pub fn is_already_exists_exception(&self) -> bool {
442        matches!(self, Self::AlreadyExistsException(_))
443    }
444    /// Returns `true` if the error kind is `UpdateResourceError::ClientTokenConflictException`.
445    pub fn is_client_token_conflict_exception(&self) -> bool {
446        matches!(self, Self::ClientTokenConflictException(_))
447    }
448    /// Returns `true` if the error kind is `UpdateResourceError::ConcurrentOperationException`.
449    pub fn is_concurrent_operation_exception(&self) -> bool {
450        matches!(self, Self::ConcurrentOperationException(_))
451    }
452    /// Returns `true` if the error kind is `UpdateResourceError::GeneralServiceException`.
453    pub fn is_general_service_exception(&self) -> bool {
454        matches!(self, Self::GeneralServiceException(_))
455    }
456    /// Returns `true` if the error kind is `UpdateResourceError::HandlerFailureException`.
457    pub fn is_handler_failure_exception(&self) -> bool {
458        matches!(self, Self::HandlerFailureException(_))
459    }
460    /// Returns `true` if the error kind is `UpdateResourceError::HandlerInternalFailureException`.
461    pub fn is_handler_internal_failure_exception(&self) -> bool {
462        matches!(self, Self::HandlerInternalFailureException(_))
463    }
464    /// Returns `true` if the error kind is `UpdateResourceError::InvalidCredentialsException`.
465    pub fn is_invalid_credentials_exception(&self) -> bool {
466        matches!(self, Self::InvalidCredentialsException(_))
467    }
468    /// Returns `true` if the error kind is `UpdateResourceError::InvalidRequestException`.
469    pub fn is_invalid_request_exception(&self) -> bool {
470        matches!(self, Self::InvalidRequestException(_))
471    }
472    /// Returns `true` if the error kind is `UpdateResourceError::NetworkFailureException`.
473    pub fn is_network_failure_exception(&self) -> bool {
474        matches!(self, Self::NetworkFailureException(_))
475    }
476    /// Returns `true` if the error kind is `UpdateResourceError::NotStabilizedException`.
477    pub fn is_not_stabilized_exception(&self) -> bool {
478        matches!(self, Self::NotStabilizedException(_))
479    }
480    /// Returns `true` if the error kind is `UpdateResourceError::NotUpdatableException`.
481    pub fn is_not_updatable_exception(&self) -> bool {
482        matches!(self, Self::NotUpdatableException(_))
483    }
484    /// Returns `true` if the error kind is `UpdateResourceError::PrivateTypeException`.
485    pub fn is_private_type_exception(&self) -> bool {
486        matches!(self, Self::PrivateTypeException(_))
487    }
488    /// Returns `true` if the error kind is `UpdateResourceError::ResourceConflictException`.
489    pub fn is_resource_conflict_exception(&self) -> bool {
490        matches!(self, Self::ResourceConflictException(_))
491    }
492    /// Returns `true` if the error kind is `UpdateResourceError::ResourceNotFoundException`.
493    pub fn is_resource_not_found_exception(&self) -> bool {
494        matches!(self, Self::ResourceNotFoundException(_))
495    }
496    /// Returns `true` if the error kind is `UpdateResourceError::ServiceInternalErrorException`.
497    pub fn is_service_internal_error_exception(&self) -> bool {
498        matches!(self, Self::ServiceInternalErrorException(_))
499    }
500    /// Returns `true` if the error kind is `UpdateResourceError::ServiceLimitExceededException`.
501    pub fn is_service_limit_exceeded_exception(&self) -> bool {
502        matches!(self, Self::ServiceLimitExceededException(_))
503    }
504    /// Returns `true` if the error kind is `UpdateResourceError::ThrottlingException`.
505    pub fn is_throttling_exception(&self) -> bool {
506        matches!(self, Self::ThrottlingException(_))
507    }
508    /// Returns `true` if the error kind is `UpdateResourceError::TypeNotFoundException`.
509    pub fn is_type_not_found_exception(&self) -> bool {
510        matches!(self, Self::TypeNotFoundException(_))
511    }
512    /// Returns `true` if the error kind is `UpdateResourceError::UnsupportedActionException`.
513    pub fn is_unsupported_action_exception(&self) -> bool {
514        matches!(self, Self::UnsupportedActionException(_))
515    }
516}
517impl ::std::error::Error for UpdateResourceError {
518    fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
519        match self {
520            Self::AlreadyExistsException(_inner) => ::std::option::Option::Some(_inner),
521            Self::ClientTokenConflictException(_inner) => ::std::option::Option::Some(_inner),
522            Self::ConcurrentOperationException(_inner) => ::std::option::Option::Some(_inner),
523            Self::GeneralServiceException(_inner) => ::std::option::Option::Some(_inner),
524            Self::HandlerFailureException(_inner) => ::std::option::Option::Some(_inner),
525            Self::HandlerInternalFailureException(_inner) => ::std::option::Option::Some(_inner),
526            Self::InvalidCredentialsException(_inner) => ::std::option::Option::Some(_inner),
527            Self::InvalidRequestException(_inner) => ::std::option::Option::Some(_inner),
528            Self::NetworkFailureException(_inner) => ::std::option::Option::Some(_inner),
529            Self::NotStabilizedException(_inner) => ::std::option::Option::Some(_inner),
530            Self::NotUpdatableException(_inner) => ::std::option::Option::Some(_inner),
531            Self::PrivateTypeException(_inner) => ::std::option::Option::Some(_inner),
532            Self::ResourceConflictException(_inner) => ::std::option::Option::Some(_inner),
533            Self::ResourceNotFoundException(_inner) => ::std::option::Option::Some(_inner),
534            Self::ServiceInternalErrorException(_inner) => ::std::option::Option::Some(_inner),
535            Self::ServiceLimitExceededException(_inner) => ::std::option::Option::Some(_inner),
536            Self::ThrottlingException(_inner) => ::std::option::Option::Some(_inner),
537            Self::TypeNotFoundException(_inner) => ::std::option::Option::Some(_inner),
538            Self::UnsupportedActionException(_inner) => ::std::option::Option::Some(_inner),
539            Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
540        }
541    }
542}
543impl ::std::fmt::Display for UpdateResourceError {
544    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
545        match self {
546            Self::AlreadyExistsException(_inner) => _inner.fmt(f),
547            Self::ClientTokenConflictException(_inner) => _inner.fmt(f),
548            Self::ConcurrentOperationException(_inner) => _inner.fmt(f),
549            Self::GeneralServiceException(_inner) => _inner.fmt(f),
550            Self::HandlerFailureException(_inner) => _inner.fmt(f),
551            Self::HandlerInternalFailureException(_inner) => _inner.fmt(f),
552            Self::InvalidCredentialsException(_inner) => _inner.fmt(f),
553            Self::InvalidRequestException(_inner) => _inner.fmt(f),
554            Self::NetworkFailureException(_inner) => _inner.fmt(f),
555            Self::NotStabilizedException(_inner) => _inner.fmt(f),
556            Self::NotUpdatableException(_inner) => _inner.fmt(f),
557            Self::PrivateTypeException(_inner) => _inner.fmt(f),
558            Self::ResourceConflictException(_inner) => _inner.fmt(f),
559            Self::ResourceNotFoundException(_inner) => _inner.fmt(f),
560            Self::ServiceInternalErrorException(_inner) => _inner.fmt(f),
561            Self::ServiceLimitExceededException(_inner) => _inner.fmt(f),
562            Self::ThrottlingException(_inner) => _inner.fmt(f),
563            Self::TypeNotFoundException(_inner) => _inner.fmt(f),
564            Self::UnsupportedActionException(_inner) => _inner.fmt(f),
565            Self::Unhandled(_inner) => {
566                if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
567                    write!(f, "unhandled error ({code})")
568                } else {
569                    f.write_str("unhandled error")
570                }
571            }
572        }
573    }
574}
575impl ::aws_smithy_types::retry::ProvideErrorKind for UpdateResourceError {
576    fn code(&self) -> ::std::option::Option<&str> {
577        ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
578    }
579    fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
580        ::std::option::Option::None
581    }
582}
583impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for UpdateResourceError {
584    fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
585        match self {
586            Self::AlreadyExistsException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
587            Self::ClientTokenConflictException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
588            Self::ConcurrentOperationException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
589            Self::GeneralServiceException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
590            Self::HandlerFailureException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
591            Self::HandlerInternalFailureException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
592            Self::InvalidCredentialsException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
593            Self::InvalidRequestException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
594            Self::NetworkFailureException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
595            Self::NotStabilizedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
596            Self::NotUpdatableException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
597            Self::PrivateTypeException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
598            Self::ResourceConflictException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
599            Self::ResourceNotFoundException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
600            Self::ServiceInternalErrorException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
601            Self::ServiceLimitExceededException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
602            Self::ThrottlingException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
603            Self::TypeNotFoundException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
604            Self::UnsupportedActionException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
605            Self::Unhandled(_inner) => &_inner.meta,
606        }
607    }
608}
609impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for UpdateResourceError {
610    fn create_unhandled_error(
611        source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
612        meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
613    ) -> Self {
614        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
615            source,
616            meta: meta.unwrap_or_default(),
617        })
618    }
619}
620impl ::aws_types::request_id::RequestId for crate::operation::update_resource::UpdateResourceError {
621    fn request_id(&self) -> Option<&str> {
622        self.meta().request_id()
623    }
624}
625
626pub use crate::operation::update_resource::_update_resource_input::UpdateResourceInput;
627
628pub use crate::operation::update_resource::_update_resource_output::UpdateResourceOutput;
629
630mod _update_resource_input;
631
632mod _update_resource_output;
633
634/// Builders
635pub mod builders;