1#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct CreateResource;
6impl CreateResource {
7 pub fn new() -> Self {
9 Self
10 }
11 pub(crate) async fn orchestrate(
12 runtime_plugins: &::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
13 input: crate::operation::create_resource::CreateResourceInput,
14 ) -> ::std::result::Result<
15 crate::operation::create_resource::CreateResourceOutput,
16 ::aws_smithy_runtime_api::client::result::SdkError<
17 crate::operation::create_resource::CreateResourceError,
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_resource::CreateResourceError>()
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_resource::CreateResourceOutput>()
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_resource::CreateResourceInput,
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", "CreateResource", input, runtime_plugins, stop_point)
55 .instrument(::tracing::debug_span!(
58 "CloudControl.CreateResource",
59 "rpc.service" = "CloudControl",
60 "rpc.method" = "CreateResource",
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::create_resource::CreateResourceInput = 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 CreateResource {
95 fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
96 let mut cfg = ::aws_smithy_types::config_bag::Layer::new("CreateResource");
97
98 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
99 CreateResourceRequestSerializer,
100 ));
101 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
102 CreateResourceResponseDeserializer,
103 ));
104
105 cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
106 crate::config::auth::Params::builder()
107 .operation_name("CreateResource")
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 "CreateResource",
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("CreateResource")
137 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
138 CreateResourceTelemetryInputCaptureInterceptor,
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 CreateResourceEndpointParamsInterceptor,
145 ))
146 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
147 crate::operation::create_resource::CreateResourceError,
148 >::new())
149 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
150 crate::operation::create_resource::CreateResourceError,
151 >::new())
152 .with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<
153 crate::operation::create_resource::CreateResourceError,
154 >::new());
155
156 ::std::borrow::Cow::Owned(rcb)
157 }
158}
159
160#[derive(Debug)]
161struct CreateResourceTelemetryInputCaptureInterceptor;
162
163#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
164impl ::aws_smithy_runtime_api::client::interceptors::Intercept for CreateResourceTelemetryInputCaptureInterceptor {
165 fn name(&self) -> &'static str {
166 "CreateResourceTelemetryInputCaptureInterceptor"
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 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::<CreateResourceInput>() else {
188 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
214 cfg.interceptor_state().store_put(captured);
215 ::std::result::Result::Ok(())
216 }
217}
218#[derive(Debug)]
219struct CreateResourceResponseDeserializer;
220impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for CreateResourceResponseDeserializer {
221 fn deserialize_nonstreaming_with_config(
222 &self,
223 response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
224 _cfg: &::aws_smithy_types::config_bag::ConfigBag,
225 ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
226 let (success, status) = (response.status().is_success(), response.status().as_u16());
227 let headers = response.headers();
228 let body = response.body().bytes().expect("body loaded");
229 #[allow(unused_mut)]
230 let mut force_error = false;
231 ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
232 let parse_result = if !success && status != 200 || force_error {
233 crate::protocol_serde::shape_create_resource::de_create_resource_http_error(status, headers, body)
234 } else {
235 crate::protocol_serde::shape_create_resource::de_create_resource_http_response(status, headers, body)
236 };
237 crate::protocol_serde::type_erase_result(parse_result)
238 }
239}
240#[derive(Debug)]
241struct CreateResourceRequestSerializer;
242impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for CreateResourceRequestSerializer {
243 #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
244 fn serialize_input(
245 &self,
246 input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
247 _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
248 ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
249 let input = input
250 .downcast::<crate::operation::create_resource::CreateResourceInput>()
251 .expect("correct type");
252 let _header_serialization_settings = _cfg
253 .load::<crate::serialization_settings::HeaderSerializationSettings>()
254 .cloned()
255 .unwrap_or_default();
256 let mut request_builder = {
257 #[allow(clippy::uninlined_format_args)]
258 fn uri_base(
259 _input: &crate::operation::create_resource::CreateResourceInput,
260 output: &mut ::std::string::String,
261 ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
262 use ::std::fmt::Write as _;
263 ::std::write!(output, "/").expect("formatting should succeed");
264 ::std::result::Result::Ok(())
265 }
266 #[allow(clippy::unnecessary_wraps)]
267 fn update_http_builder(
268 input: &crate::operation::create_resource::CreateResourceInput,
269 builder: ::http_1x::request::Builder,
270 ) -> ::std::result::Result<::http_1x::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
271 let mut uri = ::std::string::String::new();
272 uri_base(input, &mut uri)?;
273 ::std::result::Result::Ok(builder.method("POST").uri(uri))
274 }
275 let mut builder = update_http_builder(&input, ::http_1x::request::Builder::new())?;
276 builder = _header_serialization_settings.set_default_header(builder, ::http_1x::header::CONTENT_TYPE, "application/x-amz-json-1.0");
277 builder = _header_serialization_settings.set_default_header(
278 builder,
279 ::http_1x::header::HeaderName::from_static("x-amz-target"),
280 "CloudApiService.CreateResource",
281 );
282 builder
283 };
284 let body = ::aws_smithy_types::body::SdkBody::from(crate::protocol_serde::shape_create_resource::ser_create_resource_input(&input)?);
285 if let Some(content_length) = body.content_length() {
286 let content_length = content_length.to_string();
287 request_builder = _header_serialization_settings.set_default_header(request_builder, ::http_1x::header::CONTENT_LENGTH, &content_length);
288 }
289 ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
290 }
291}
292#[derive(Debug)]
293struct CreateResourceEndpointParamsInterceptor;
294
295#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
296impl ::aws_smithy_runtime_api::client::interceptors::Intercept for CreateResourceEndpointParamsInterceptor {
297 fn name(&self) -> &'static str {
298 "CreateResourceEndpointParamsInterceptor"
299 }
300
301 fn read_before_execution(
302 &self,
303 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
304 '_,
305 ::aws_smithy_runtime_api::client::interceptors::context::Input,
306 ::aws_smithy_runtime_api::client::interceptors::context::Output,
307 ::aws_smithy_runtime_api::client::interceptors::context::Error,
308 >,
309 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
310 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
311 let _input = context
312 .input()
313 .downcast_ref::<CreateResourceInput>()
314 .ok_or("failed to downcast to CreateResourceInput")?;
315
316 let params = crate::config::endpoint::Params::builder()
317 .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
318 .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
319 .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
320 .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
321 .build()
322 .map_err(|err| {
323 ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
324 })?;
325 cfg.interceptor_state()
326 .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
327 ::std::result::Result::Ok(())
328 }
329}
330
331#[non_exhaustive]
336#[derive(::std::fmt::Debug)]
337pub enum CreateResourceError {
338 AlreadyExistsException(crate::types::error::AlreadyExistsException),
340 ClientTokenConflictException(crate::types::error::ClientTokenConflictException),
343 ConcurrentOperationException(crate::types::error::ConcurrentOperationException),
345 GeneralServiceException(crate::types::error::GeneralServiceException),
347 HandlerFailureException(crate::types::error::HandlerFailureException),
349 HandlerInternalFailureException(crate::types::error::HandlerInternalFailureException),
351 InvalidCredentialsException(crate::types::error::InvalidCredentialsException),
353 InvalidRequestException(crate::types::error::InvalidRequestException),
355 NetworkFailureException(crate::types::error::NetworkFailureException),
357 NotStabilizedException(crate::types::error::NotStabilizedException),
359 NotUpdatableException(crate::types::error::NotUpdatableException),
361 PrivateTypeException(crate::types::error::PrivateTypeException),
363 ResourceConflictException(crate::types::error::ResourceConflictException),
365 ResourceNotFoundException(crate::types::error::ResourceNotFoundException),
367 ServiceInternalErrorException(crate::types::error::ServiceInternalErrorException),
369 ServiceLimitExceededException(crate::types::error::ServiceLimitExceededException),
371 ThrottlingException(crate::types::error::ThrottlingException),
373 TypeNotFoundException(crate::types::error::TypeNotFoundException),
375 UnsupportedActionException(crate::types::error::UnsupportedActionException),
377 #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
379 variable wildcard pattern and check `.code()`:
380 \
381 `err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
382 \
383 See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-CreateResourceError) for what information is available for the error.")]
384 Unhandled(crate::error::sealed_unhandled::Unhandled),
385}
386impl CreateResourceError {
387 pub fn unhandled(
389 err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
390 ) -> Self {
391 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
392 source: err.into(),
393 meta: ::std::default::Default::default(),
394 })
395 }
396
397 pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
399 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
400 source: err.clone().into(),
401 meta: err,
402 })
403 }
404 pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
409 match self {
410 Self::AlreadyExistsException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
411 Self::ClientTokenConflictException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
412 Self::ConcurrentOperationException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
413 Self::GeneralServiceException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
414 Self::HandlerFailureException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
415 Self::HandlerInternalFailureException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
416 Self::InvalidCredentialsException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
417 Self::InvalidRequestException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
418 Self::NetworkFailureException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
419 Self::NotStabilizedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
420 Self::NotUpdatableException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
421 Self::PrivateTypeException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
422 Self::ResourceConflictException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
423 Self::ResourceNotFoundException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
424 Self::ServiceInternalErrorException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
425 Self::ServiceLimitExceededException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
426 Self::ThrottlingException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
427 Self::TypeNotFoundException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
428 Self::UnsupportedActionException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
429 Self::Unhandled(e) => &e.meta,
430 }
431 }
432 pub fn is_already_exists_exception(&self) -> bool {
434 matches!(self, Self::AlreadyExistsException(_))
435 }
436 pub fn is_client_token_conflict_exception(&self) -> bool {
438 matches!(self, Self::ClientTokenConflictException(_))
439 }
440 pub fn is_concurrent_operation_exception(&self) -> bool {
442 matches!(self, Self::ConcurrentOperationException(_))
443 }
444 pub fn is_general_service_exception(&self) -> bool {
446 matches!(self, Self::GeneralServiceException(_))
447 }
448 pub fn is_handler_failure_exception(&self) -> bool {
450 matches!(self, Self::HandlerFailureException(_))
451 }
452 pub fn is_handler_internal_failure_exception(&self) -> bool {
454 matches!(self, Self::HandlerInternalFailureException(_))
455 }
456 pub fn is_invalid_credentials_exception(&self) -> bool {
458 matches!(self, Self::InvalidCredentialsException(_))
459 }
460 pub fn is_invalid_request_exception(&self) -> bool {
462 matches!(self, Self::InvalidRequestException(_))
463 }
464 pub fn is_network_failure_exception(&self) -> bool {
466 matches!(self, Self::NetworkFailureException(_))
467 }
468 pub fn is_not_stabilized_exception(&self) -> bool {
470 matches!(self, Self::NotStabilizedException(_))
471 }
472 pub fn is_not_updatable_exception(&self) -> bool {
474 matches!(self, Self::NotUpdatableException(_))
475 }
476 pub fn is_private_type_exception(&self) -> bool {
478 matches!(self, Self::PrivateTypeException(_))
479 }
480 pub fn is_resource_conflict_exception(&self) -> bool {
482 matches!(self, Self::ResourceConflictException(_))
483 }
484 pub fn is_resource_not_found_exception(&self) -> bool {
486 matches!(self, Self::ResourceNotFoundException(_))
487 }
488 pub fn is_service_internal_error_exception(&self) -> bool {
490 matches!(self, Self::ServiceInternalErrorException(_))
491 }
492 pub fn is_service_limit_exceeded_exception(&self) -> bool {
494 matches!(self, Self::ServiceLimitExceededException(_))
495 }
496 pub fn is_throttling_exception(&self) -> bool {
498 matches!(self, Self::ThrottlingException(_))
499 }
500 pub fn is_type_not_found_exception(&self) -> bool {
502 matches!(self, Self::TypeNotFoundException(_))
503 }
504 pub fn is_unsupported_action_exception(&self) -> bool {
506 matches!(self, Self::UnsupportedActionException(_))
507 }
508}
509impl ::std::error::Error for CreateResourceError {
510 fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
511 match self {
512 Self::AlreadyExistsException(_inner) => ::std::option::Option::Some(_inner),
513 Self::ClientTokenConflictException(_inner) => ::std::option::Option::Some(_inner),
514 Self::ConcurrentOperationException(_inner) => ::std::option::Option::Some(_inner),
515 Self::GeneralServiceException(_inner) => ::std::option::Option::Some(_inner),
516 Self::HandlerFailureException(_inner) => ::std::option::Option::Some(_inner),
517 Self::HandlerInternalFailureException(_inner) => ::std::option::Option::Some(_inner),
518 Self::InvalidCredentialsException(_inner) => ::std::option::Option::Some(_inner),
519 Self::InvalidRequestException(_inner) => ::std::option::Option::Some(_inner),
520 Self::NetworkFailureException(_inner) => ::std::option::Option::Some(_inner),
521 Self::NotStabilizedException(_inner) => ::std::option::Option::Some(_inner),
522 Self::NotUpdatableException(_inner) => ::std::option::Option::Some(_inner),
523 Self::PrivateTypeException(_inner) => ::std::option::Option::Some(_inner),
524 Self::ResourceConflictException(_inner) => ::std::option::Option::Some(_inner),
525 Self::ResourceNotFoundException(_inner) => ::std::option::Option::Some(_inner),
526 Self::ServiceInternalErrorException(_inner) => ::std::option::Option::Some(_inner),
527 Self::ServiceLimitExceededException(_inner) => ::std::option::Option::Some(_inner),
528 Self::ThrottlingException(_inner) => ::std::option::Option::Some(_inner),
529 Self::TypeNotFoundException(_inner) => ::std::option::Option::Some(_inner),
530 Self::UnsupportedActionException(_inner) => ::std::option::Option::Some(_inner),
531 Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
532 }
533 }
534}
535impl ::std::fmt::Display for CreateResourceError {
536 fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
537 match self {
538 Self::AlreadyExistsException(_inner) => _inner.fmt(f),
539 Self::ClientTokenConflictException(_inner) => _inner.fmt(f),
540 Self::ConcurrentOperationException(_inner) => _inner.fmt(f),
541 Self::GeneralServiceException(_inner) => _inner.fmt(f),
542 Self::HandlerFailureException(_inner) => _inner.fmt(f),
543 Self::HandlerInternalFailureException(_inner) => _inner.fmt(f),
544 Self::InvalidCredentialsException(_inner) => _inner.fmt(f),
545 Self::InvalidRequestException(_inner) => _inner.fmt(f),
546 Self::NetworkFailureException(_inner) => _inner.fmt(f),
547 Self::NotStabilizedException(_inner) => _inner.fmt(f),
548 Self::NotUpdatableException(_inner) => _inner.fmt(f),
549 Self::PrivateTypeException(_inner) => _inner.fmt(f),
550 Self::ResourceConflictException(_inner) => _inner.fmt(f),
551 Self::ResourceNotFoundException(_inner) => _inner.fmt(f),
552 Self::ServiceInternalErrorException(_inner) => _inner.fmt(f),
553 Self::ServiceLimitExceededException(_inner) => _inner.fmt(f),
554 Self::ThrottlingException(_inner) => _inner.fmt(f),
555 Self::TypeNotFoundException(_inner) => _inner.fmt(f),
556 Self::UnsupportedActionException(_inner) => _inner.fmt(f),
557 Self::Unhandled(_inner) => {
558 if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
559 write!(f, "unhandled error ({code})")
560 } else {
561 f.write_str("unhandled error")
562 }
563 }
564 }
565 }
566}
567impl ::aws_smithy_types::retry::ProvideErrorKind for CreateResourceError {
568 fn code(&self) -> ::std::option::Option<&str> {
569 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
570 }
571 fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
572 ::std::option::Option::None
573 }
574}
575impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for CreateResourceError {
576 fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
577 match self {
578 Self::AlreadyExistsException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
579 Self::ClientTokenConflictException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
580 Self::ConcurrentOperationException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
581 Self::GeneralServiceException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
582 Self::HandlerFailureException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
583 Self::HandlerInternalFailureException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
584 Self::InvalidCredentialsException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
585 Self::InvalidRequestException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
586 Self::NetworkFailureException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
587 Self::NotStabilizedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
588 Self::NotUpdatableException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
589 Self::PrivateTypeException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
590 Self::ResourceConflictException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
591 Self::ResourceNotFoundException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
592 Self::ServiceInternalErrorException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
593 Self::ServiceLimitExceededException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
594 Self::ThrottlingException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
595 Self::TypeNotFoundException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
596 Self::UnsupportedActionException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
597 Self::Unhandled(_inner) => &_inner.meta,
598 }
599 }
600}
601impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for CreateResourceError {
602 fn create_unhandled_error(
603 source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
604 meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
605 ) -> Self {
606 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
607 source,
608 meta: meta.unwrap_or_default(),
609 })
610 }
611}
612impl ::aws_types::request_id::RequestId for crate::operation::create_resource::CreateResourceError {
613 fn request_id(&self) -> Option<&str> {
614 self.meta().request_id()
615 }
616}
617
618pub use crate::operation::create_resource::_create_resource_input::CreateResourceInput;
619
620pub use crate::operation::create_resource::_create_resource_output::CreateResourceOutput;
621
622mod _create_resource_input;
623
624mod _create_resource_output;
625
626pub mod builders;