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