Skip to main content

aws_sdk_iotmanagedintegrations/operation/
create_managed_thing.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2/// Orchestration and serialization glue logic for `CreateManagedThing`.
3#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct CreateManagedThing;
6impl CreateManagedThing {
7    /// Creates a new `CreateManagedThing`
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::create_managed_thing::CreateManagedThingInput,
14    ) -> ::std::result::Result<
15        crate::operation::create_managed_thing::CreateManagedThingOutput,
16        ::aws_smithy_runtime_api::client::result::SdkError<
17            crate::operation::create_managed_thing::CreateManagedThingError,
18            ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
19        >,
20    > {
21        let map_err = |err: ::aws_smithy_runtime_api::client::result::SdkError<
22            ::aws_smithy_runtime_api::client::interceptors::context::Error,
23            ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
24        >| {
25            err.map_service_error(|err| {
26                err.downcast::<crate::operation::create_managed_thing::CreateManagedThingError>()
27                    .expect("correct error type")
28            })
29        };
30        let context = Self::orchestrate_with_stop_point(runtime_plugins, input, ::aws_smithy_runtime::client::orchestrator::StopPoint::None)
31            .await
32            .map_err(map_err)?;
33        let output = context.finalize().map_err(map_err)?;
34        ::std::result::Result::Ok(
35            output
36                .downcast::<crate::operation::create_managed_thing::CreateManagedThingOutput>()
37                .expect("correct output type"),
38        )
39    }
40
41    pub(crate) async fn orchestrate_with_stop_point(
42        runtime_plugins: &::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
43        input: crate::operation::create_managed_thing::CreateManagedThingInput,
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            "IoT Managed Integrations",
56            "CreateManagedThing",
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            "IoT Managed Integrations.CreateManagedThing",
65            "rpc.service" = "IoT Managed Integrations",
66            "rpc.method" = "CreateManagedThing",
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        runtime_plugins = runtime_plugins.with_operation_plugin(crate::client_idempotency_token::IdempotencyTokenRuntimePlugin::new(
80            |token_provider, input| {
81                let input: &mut crate::operation::create_managed_thing::CreateManagedThingInput = input.downcast_mut().expect("correct type");
82                if input.client_token.is_none() {
83                    input.client_token = ::std::option::Option::Some(token_provider.make_idempotency_token());
84                }
85            },
86        ));
87        if let ::std::option::Option::Some(config_override) = config_override {
88            for plugin in config_override.runtime_plugins.iter().cloned() {
89                runtime_plugins = runtime_plugins.with_operation_plugin(plugin);
90            }
91            runtime_plugins = runtime_plugins.with_operation_plugin(crate::config::ConfigOverrideRuntimePlugin::new(
92                config_override,
93                client_config.config.clone(),
94                &client_config.runtime_components,
95            ));
96        }
97        runtime_plugins
98    }
99}
100impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for CreateManagedThing {
101    fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
102        let mut cfg = ::aws_smithy_types::config_bag::Layer::new("CreateManagedThing");
103
104        cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
105            CreateManagedThingRequestSerializer,
106        ));
107        cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
108            CreateManagedThingResponseDeserializer,
109        ));
110
111        cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
112            crate::config::auth::Params::builder()
113                .operation_name("CreateManagedThing")
114                .build()
115                .expect("required fields set"),
116        ));
117
118        cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new(
119            "CreateManagedThing",
120            "IoT Managed Integrations",
121        ));
122        let mut signing_options = ::aws_runtime::auth::SigningOptions::default();
123        signing_options.double_uri_encode = true;
124        signing_options.content_sha256_header = false;
125        signing_options.normalize_uri_path = true;
126        signing_options.payload_override = None;
127
128        cfg.store_put(::aws_runtime::auth::SigV4OperationSigningConfig {
129            signing_options,
130            ..::std::default::Default::default()
131        });
132
133        ::std::option::Option::Some(cfg.freeze())
134    }
135
136    fn runtime_components(
137        &self,
138        _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
139    ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
140        #[allow(unused_mut)]
141        let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("CreateManagedThing")
142            .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
143                CreateManagedThingTelemetryInputCaptureInterceptor,
144            ))
145            .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
146                ::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default(),
147            ))
148            .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
149                CreateManagedThingEndpointParamsInterceptor,
150            ))
151            .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
152                crate::operation::create_managed_thing::CreateManagedThingError,
153            >::new())
154            .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
155                crate::operation::create_managed_thing::CreateManagedThingError,
156            >::new())
157            .with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<
158                crate::operation::create_managed_thing::CreateManagedThingError,
159            >::new())
160            .with_retry_classifier(::aws_runtime::service_clock_skew::ServiceClockSkewClassifier::<
161                crate::operation::create_managed_thing::CreateManagedThingError,
162            >::new());
163
164        ::std::borrow::Cow::Owned(rcb)
165    }
166}
167
168#[derive(Debug)]
169struct CreateManagedThingTelemetryInputCaptureInterceptor;
170
171#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
172impl ::aws_smithy_runtime_api::client::interceptors::Intercept for CreateManagedThingTelemetryInputCaptureInterceptor {
173    fn name(&self) -> &'static str {
174        "CreateManagedThingTelemetryInputCaptureInterceptor"
175    }
176
177    fn read_before_execution(
178        &self,
179        context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
180            '_,
181            ::aws_smithy_runtime_api::client::interceptors::context::Input,
182            ::aws_smithy_runtime_api::client::interceptors::context::Output,
183            ::aws_smithy_runtime_api::client::interceptors::context::Error,
184        >,
185        cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
186    ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
187        // Nothing to do unless the customer opted in by naming members to record.
188        let ::std::option::Option::Some(requested) = cfg
189            .load::<::aws_smithy_types::telemetry::RequestedTelemetryAttributes>()
190            .filter(|r| !r.is_empty())
191        else {
192            return ::std::result::Result::Ok(());
193        };
194
195        let ::std::option::Option::Some(input) = context.input().downcast_ref::<CreateManagedThingInput>() else {
196            // A mismatched input is not this interceptor's concern; skip quietly.
197            return ::std::result::Result::Ok(());
198        };
199
200        let mut captured = ::aws_smithy_types::telemetry::CapturedTelemetryAttributes::default();
201        if requested.should_capture("CredentialLockerId") {
202            if let ::std::option::Option::Some(value) = input.credential_locker_id.as_deref() {
203                captured.insert("CredentialLockerId", value);
204            }
205        }
206        if requested.should_capture("Name") {
207            if let ::std::option::Option::Some(value) = input.name.as_deref() {
208                captured.insert("Name", value);
209            }
210        }
211        if requested.should_capture("Capabilities") {
212            if let ::std::option::Option::Some(value) = input.capabilities.as_deref() {
213                captured.insert("Capabilities", value);
214            }
215        }
216        if requested.should_capture("ClientToken") {
217            if let ::std::option::Option::Some(value) = input.client_token.as_deref() {
218                captured.insert("ClientToken", value);
219            }
220        }
221
222        cfg.interceptor_state().store_put(captured);
223        ::std::result::Result::Ok(())
224    }
225}
226#[derive(Debug)]
227struct CreateManagedThingResponseDeserializer;
228impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for CreateManagedThingResponseDeserializer {
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 != 201 || force_error {
241            crate::protocol_serde::shape_create_managed_thing::de_create_managed_thing_http_error(status, headers, body)
242        } else {
243            crate::protocol_serde::shape_create_managed_thing::de_create_managed_thing_http_response(status, headers, body)
244        };
245        crate::protocol_serde::type_erase_result(parse_result)
246    }
247}
248#[derive(Debug)]
249struct CreateManagedThingRequestSerializer;
250impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for CreateManagedThingRequestSerializer {
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::create_managed_thing::CreateManagedThingInput>()
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::create_managed_thing::CreateManagedThingInput,
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, "/managed-things").expect("formatting should succeed");
272                ::std::result::Result::Ok(())
273            }
274            #[allow(clippy::unnecessary_wraps)]
275            fn update_http_builder(
276                input: &crate::operation::create_managed_thing::CreateManagedThingInput,
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/json");
285            builder
286        };
287        let body =
288            ::aws_smithy_types::body::SdkBody::from(crate::protocol_serde::shape_create_managed_thing::ser_create_managed_thing_input(&input)?);
289        if let Some(content_length) = body.content_length() {
290            let content_length = content_length.to_string();
291            request_builder = _header_serialization_settings.set_default_header(request_builder, ::http_1x::header::CONTENT_LENGTH, &content_length);
292        }
293        ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
294    }
295}
296#[derive(Debug)]
297struct CreateManagedThingEndpointParamsInterceptor;
298
299#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
300impl ::aws_smithy_runtime_api::client::interceptors::Intercept for CreateManagedThingEndpointParamsInterceptor {
301    fn name(&self) -> &'static str {
302        "CreateManagedThingEndpointParamsInterceptor"
303    }
304
305    fn read_before_execution(
306        &self,
307        context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
308            '_,
309            ::aws_smithy_runtime_api::client::interceptors::context::Input,
310            ::aws_smithy_runtime_api::client::interceptors::context::Output,
311            ::aws_smithy_runtime_api::client::interceptors::context::Error,
312        >,
313        cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
314    ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
315        let _input = context
316            .input()
317            .downcast_ref::<CreateManagedThingInput>()
318            .ok_or("failed to downcast to CreateManagedThingInput")?;
319
320        let params = crate::config::endpoint::Params::builder()
321            .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
322            .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
323            .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
324            .build()
325            .map_err(|err| {
326                ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
327            })?;
328        cfg.interceptor_state()
329            .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
330        ::std::result::Result::Ok(())
331    }
332}
333
334// The get_* functions below are generated from JMESPath expressions in the
335// operationContextParams trait. They target the operation's input shape.
336
337/// Error type for the `CreateManagedThingError` operation.
338#[non_exhaustive]
339#[derive(::std::fmt::Debug)]
340pub enum CreateManagedThingError {
341    /// <p>User is not authorized.</p>
342    AccessDeniedException(crate::types::error::AccessDeniedException),
343    /// <p>There is a conflict with the request.</p>
344    ConflictException(crate::types::error::ConflictException),
345    /// <p>Internal error from the service that indicates an unexpected error or that the service is unavailable.</p>
346    InternalServerException(crate::types::error::InternalServerException),
347    /// <p>The specified resource does not exist.</p>
348    ResourceNotFoundException(crate::types::error::ResourceNotFoundException),
349    /// <p>The service is temporarily unavailable.</p>
350    ServiceUnavailableException(crate::types::error::ServiceUnavailableException),
351    /// <p>The rate exceeds the limit.</p>
352    ThrottlingException(crate::types::error::ThrottlingException),
353    /// <p>You are not authorized to perform this operation.</p>
354    UnauthorizedException(crate::types::error::UnauthorizedException),
355    /// <p>A validation error occurred when performing the API request.</p>
356    ValidationException(crate::types::error::ValidationException),
357    /// An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
358    #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
359    variable wildcard pattern and check `.code()`:
360     \
361    &nbsp;&nbsp;&nbsp;`err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
362     \
363    See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-CreateManagedThingError) for what information is available for the error.")]
364    Unhandled(crate::error::sealed_unhandled::Unhandled),
365}
366impl CreateManagedThingError {
367    /// Creates the `CreateManagedThingError::Unhandled` variant from any error type.
368    pub fn unhandled(
369        err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
370    ) -> Self {
371        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
372            source: err.into(),
373            meta: ::std::default::Default::default(),
374        })
375    }
376
377    /// Creates the `CreateManagedThingError::Unhandled` variant from an [`ErrorMetadata`](::aws_smithy_types::error::ErrorMetadata).
378    pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
379        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
380            source: err.clone().into(),
381            meta: err,
382        })
383    }
384    ///
385    /// Returns error metadata, which includes the error code, message,
386    /// request ID, and potentially additional information.
387    ///
388    pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
389        match self {
390            Self::AccessDeniedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
391            Self::ConflictException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
392            Self::InternalServerException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
393            Self::ResourceNotFoundException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
394            Self::ServiceUnavailableException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
395            Self::ThrottlingException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
396            Self::UnauthorizedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
397            Self::ValidationException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
398            Self::Unhandled(e) => &e.meta,
399        }
400    }
401    /// Returns `true` if the error kind is `CreateManagedThingError::AccessDeniedException`.
402    pub fn is_access_denied_exception(&self) -> bool {
403        matches!(self, Self::AccessDeniedException(_))
404    }
405    /// Returns `true` if the error kind is `CreateManagedThingError::ConflictException`.
406    pub fn is_conflict_exception(&self) -> bool {
407        matches!(self, Self::ConflictException(_))
408    }
409    /// Returns `true` if the error kind is `CreateManagedThingError::InternalServerException`.
410    pub fn is_internal_server_exception(&self) -> bool {
411        matches!(self, Self::InternalServerException(_))
412    }
413    /// Returns `true` if the error kind is `CreateManagedThingError::ResourceNotFoundException`.
414    pub fn is_resource_not_found_exception(&self) -> bool {
415        matches!(self, Self::ResourceNotFoundException(_))
416    }
417    /// Returns `true` if the error kind is `CreateManagedThingError::ServiceUnavailableException`.
418    pub fn is_service_unavailable_exception(&self) -> bool {
419        matches!(self, Self::ServiceUnavailableException(_))
420    }
421    /// Returns `true` if the error kind is `CreateManagedThingError::ThrottlingException`.
422    pub fn is_throttling_exception(&self) -> bool {
423        matches!(self, Self::ThrottlingException(_))
424    }
425    /// Returns `true` if the error kind is `CreateManagedThingError::UnauthorizedException`.
426    pub fn is_unauthorized_exception(&self) -> bool {
427        matches!(self, Self::UnauthorizedException(_))
428    }
429    /// Returns `true` if the error kind is `CreateManagedThingError::ValidationException`.
430    pub fn is_validation_exception(&self) -> bool {
431        matches!(self, Self::ValidationException(_))
432    }
433}
434impl ::std::error::Error for CreateManagedThingError {
435    fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
436        match self {
437            Self::AccessDeniedException(_inner) => ::std::option::Option::Some(_inner),
438            Self::ConflictException(_inner) => ::std::option::Option::Some(_inner),
439            Self::InternalServerException(_inner) => ::std::option::Option::Some(_inner),
440            Self::ResourceNotFoundException(_inner) => ::std::option::Option::Some(_inner),
441            Self::ServiceUnavailableException(_inner) => ::std::option::Option::Some(_inner),
442            Self::ThrottlingException(_inner) => ::std::option::Option::Some(_inner),
443            Self::UnauthorizedException(_inner) => ::std::option::Option::Some(_inner),
444            Self::ValidationException(_inner) => ::std::option::Option::Some(_inner),
445            Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
446        }
447    }
448}
449impl ::std::fmt::Display for CreateManagedThingError {
450    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
451        match self {
452            Self::AccessDeniedException(_inner) => _inner.fmt(f),
453            Self::ConflictException(_inner) => _inner.fmt(f),
454            Self::InternalServerException(_inner) => _inner.fmt(f),
455            Self::ResourceNotFoundException(_inner) => _inner.fmt(f),
456            Self::ServiceUnavailableException(_inner) => _inner.fmt(f),
457            Self::ThrottlingException(_inner) => _inner.fmt(f),
458            Self::UnauthorizedException(_inner) => _inner.fmt(f),
459            Self::ValidationException(_inner) => _inner.fmt(f),
460            Self::Unhandled(_inner) => {
461                if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
462                    write!(f, "unhandled error ({code})")
463                } else {
464                    f.write_str("unhandled error")
465                }
466            }
467        }
468    }
469}
470impl ::aws_smithy_types::retry::ProvideErrorKind for CreateManagedThingError {
471    fn code(&self) -> ::std::option::Option<&str> {
472        ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
473    }
474    fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
475        ::std::option::Option::None
476    }
477}
478impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for CreateManagedThingError {
479    fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
480        match self {
481            Self::AccessDeniedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
482            Self::ConflictException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
483            Self::InternalServerException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
484            Self::ResourceNotFoundException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
485            Self::ServiceUnavailableException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
486            Self::ThrottlingException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
487            Self::UnauthorizedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
488            Self::ValidationException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
489            Self::Unhandled(_inner) => &_inner.meta,
490        }
491    }
492}
493impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for CreateManagedThingError {
494    fn create_unhandled_error(
495        source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
496        meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
497    ) -> Self {
498        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
499            source,
500            meta: meta.unwrap_or_default(),
501        })
502    }
503}
504impl ::aws_types::request_id::RequestId for crate::operation::create_managed_thing::CreateManagedThingError {
505    fn request_id(&self) -> Option<&str> {
506        self.meta().request_id()
507    }
508}
509
510pub use crate::operation::create_managed_thing::_create_managed_thing_input::CreateManagedThingInput;
511
512pub use crate::operation::create_managed_thing::_create_managed_thing_output::CreateManagedThingOutput;
513
514mod _create_managed_thing_input;
515
516mod _create_managed_thing_output;
517
518/// Builders
519pub mod builders;