aws_sdk_ssooidc/operation/
create_token.rs1#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct CreateToken;
6impl CreateToken {
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_token::CreateTokenInput,
14 ) -> ::std::result::Result<crate::operation::create_token::CreateTokenOutput, ::aws_smithy_runtime_api::client::result::SdkError<crate::operation::create_token::CreateTokenError, ::aws_smithy_runtime_api::client::orchestrator::HttpResponse>> {
15 let map_err = |err: ::aws_smithy_runtime_api::client::result::SdkError<::aws_smithy_runtime_api::client::interceptors::context::Error, ::aws_smithy_runtime_api::client::orchestrator::HttpResponse>| {
16 err.map_service_error(|err| {
17 err.downcast::<crate::operation::create_token::CreateTokenError>().expect("correct error type")
18 })
19 };
20 let context = Self::orchestrate_with_stop_point(runtime_plugins, input, ::aws_smithy_runtime::client::orchestrator::StopPoint::None)
21 .await
22 .map_err(map_err)?;
23 let output = context.finalize().map_err(map_err)?;
24 ::std::result::Result::Ok(output.downcast::<crate::operation::create_token::CreateTokenOutput>().expect("correct output type"))
25 }
26
27 pub(crate) async fn orchestrate_with_stop_point(
28 runtime_plugins: &::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
29 input: crate::operation::create_token::CreateTokenInput,
30 stop_point: ::aws_smithy_runtime::client::orchestrator::StopPoint,
31 ) -> ::std::result::Result<::aws_smithy_runtime_api::client::interceptors::context::InterceptorContext, ::aws_smithy_runtime_api::client::result::SdkError<::aws_smithy_runtime_api::client::interceptors::context::Error, ::aws_smithy_runtime_api::client::orchestrator::HttpResponse>> {
32 let input = ::aws_smithy_runtime_api::client::interceptors::context::Input::erase(input);
33 use ::tracing::Instrument;
34 ::aws_smithy_runtime::client::orchestrator::invoke_with_stop_point(
35 "SSO OIDC",
36 "CreateToken",
37 input,
38 runtime_plugins,
39 stop_point
40 )
41 .instrument(::tracing::debug_span!(
44 "SSO OIDC.CreateToken",
45 "rpc.service" = "SSO OIDC",
46 "rpc.method" = "CreateToken",
47 "sdk_invocation_id" = ::fastrand::u32(1_000_000..10_000_000),
48 "rpc.system" = "aws-api",
49 ))
50 .await
51 }
52
53 pub(crate) fn operation_runtime_plugins(
54 client_runtime_plugins: ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
55 client_config: &crate::config::Config,
56 config_override: ::std::option::Option<crate::config::Builder>,
57 ) -> ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins {
58 let mut runtime_plugins = client_runtime_plugins.with_operation_plugin(Self::new());
59
60 if let ::std::option::Option::Some(config_override) = config_override {
61 for plugin in config_override.runtime_plugins.iter().cloned() {
62 runtime_plugins = runtime_plugins.with_operation_plugin(plugin);
63 }
64 runtime_plugins = runtime_plugins.with_operation_plugin(
65 crate::config::ConfigOverrideRuntimePlugin::new(config_override, client_config.config.clone(), &client_config.runtime_components)
66 );
67 }
68 runtime_plugins
69 }
70}
71impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for CreateToken {
72 fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
73 let mut cfg = ::aws_smithy_types::config_bag::Layer::new("CreateToken");
74
75 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(CreateTokenRequestSerializer));
76 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(CreateTokenResponseDeserializer));
77
78 cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
79 crate::config::auth::Params::builder()
80 .operation_name("CreateToken")
81 .build()
82 .expect("required fields set")
83 ));
84
85 cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::SensitiveOutput);
86cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new(
87 "CreateToken",
88 "SSO OIDC",
89 ));
90
91 ::std::option::Option::Some(cfg.freeze())
92 }
93
94 fn runtime_components(&self, _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
95 #[allow(unused_mut)]
96 let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("CreateToken")
97 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(CreateTokenTelemetryInputCaptureInterceptor))
98.with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default()))
99.with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(CreateTokenEndpointParamsInterceptor))
100 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<crate::operation::create_token::CreateTokenError>::new())
101.with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<crate::operation::create_token::CreateTokenError>::new())
102.with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<crate::operation::create_token::CreateTokenError>::new());
103
104 ::std::borrow::Cow::Owned(rcb)
105 }
106 }
107
108 #[derive(Debug)]
109 struct CreateTokenTelemetryInputCaptureInterceptor;
110
111 #[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
112 impl ::aws_smithy_runtime_api::client::interceptors::Intercept for CreateTokenTelemetryInputCaptureInterceptor {
113 fn name(&self) -> &'static str {
114 "CreateTokenTelemetryInputCaptureInterceptor"
115 }
116
117 fn read_before_execution(
118 &self,
119 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<'_, ::aws_smithy_runtime_api::client::interceptors::context::Input, ::aws_smithy_runtime_api::client::interceptors::context::Output, ::aws_smithy_runtime_api::client::interceptors::context::Error>,
120 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
121 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
122 let ::std::option::Option::Some(requested) = cfg.load::<::aws_smithy_types::telemetry::RequestedTelemetryAttributes>().filter(|r| !r.is_empty()) else {
124 return ::std::result::Result::Ok(());
125 };
126
127 let ::std::option::Option::Some(input) = context.input().downcast_ref::<CreateTokenInput>() else {
128 return ::std::result::Result::Ok(());
130 };
131
132 let mut captured = ::aws_smithy_types::telemetry::CapturedTelemetryAttributes::default();
133 if requested.should_capture("clientId") {
134 if let ::std::option::Option::Some(value) = input.client_id.as_deref() {
135 captured.insert("clientId", value);
136 }
137 }
138if requested.should_capture("grantType") {
139 if let ::std::option::Option::Some(value) = input.grant_type.as_deref() {
140 captured.insert("grantType", value);
141 }
142 }
143if requested.should_capture("deviceCode") {
144 if let ::std::option::Option::Some(value) = input.device_code.as_deref() {
145 captured.insert("deviceCode", value);
146 }
147 }
148if requested.should_capture("code") {
149 if let ::std::option::Option::Some(value) = input.code.as_deref() {
150 captured.insert("code", value);
151 }
152 }
153if requested.should_capture("redirectUri") {
154 if let ::std::option::Option::Some(value) = input.redirect_uri.as_deref() {
155 captured.insert("redirectUri", value);
156 }
157 }
158
159 cfg.interceptor_state().store_put(captured);
160 ::std::result::Result::Ok(())
161 }
162 }
163#[derive(Debug)]
164 struct CreateTokenResponseDeserializer;
165 impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for CreateTokenResponseDeserializer {
166
167
168 fn deserialize_nonstreaming_with_config(&self, response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse, _cfg: &::aws_smithy_types::config_bag::ConfigBag) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
169 let (success, status) = (response.status().is_success(), response.status().as_u16());
170 let headers = response.headers();
171 let body = response.body().bytes().expect("body loaded");
172 #[allow(unused_mut)]
173 let mut force_error = false;
174 ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
175 let parse_result = if !success && status != 200 || force_error {
176 crate::protocol_serde::shape_create_token::de_create_token_http_error(status, headers, body)
177 } else {
178 crate::protocol_serde::shape_create_token::de_create_token_http_response(status, headers, body)
179 };
180 crate::protocol_serde::type_erase_result(parse_result)
181 }
182 }
183#[derive(Debug)]
184 struct CreateTokenRequestSerializer;
185 impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for CreateTokenRequestSerializer {
186 #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
187 fn serialize_input(&self, input: ::aws_smithy_runtime_api::client::interceptors::context::Input, _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
188 let input = input.downcast::<crate::operation::create_token::CreateTokenInput>().expect("correct type");
189 let _header_serialization_settings = _cfg.load::<crate::serialization_settings::HeaderSerializationSettings>().cloned().unwrap_or_default();
190 let mut request_builder = {
191 #[allow(clippy::uninlined_format_args)]
192fn uri_base(_input: &crate::operation::create_token::CreateTokenInput, output: &mut ::std::string::String) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
193 use ::std::fmt::Write as _;
194 ::std::write!(output, "/token").expect("formatting should succeed");
195 ::std::result::Result::Ok(())
196}
197#[allow(clippy::unnecessary_wraps)]
198fn update_http_builder(
199 input: &crate::operation::create_token::CreateTokenInput,
200 builder: ::http_1x::request::Builder
201 ) -> ::std::result::Result<::http_1x::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
202 let mut uri = ::std::string::String::new();
203 uri_base(input, &mut uri)?;
204 ::std::result::Result::Ok(builder.method("POST").uri(uri))
205}
206let mut builder = update_http_builder(&input, ::http_1x::request::Builder::new())?;
207builder = _header_serialization_settings.set_default_header(builder, ::http_1x::header::CONTENT_TYPE, "application/json");
208builder
209 };
210 let body = ::aws_smithy_types::body::SdkBody::from(crate::protocol_serde::shape_create_token::ser_create_token_input(&input)?);
211 if let Some(content_length) = body.content_length() {
212 let content_length = content_length.to_string();
213 request_builder = _header_serialization_settings.set_default_header(request_builder, ::http_1x::header::CONTENT_LENGTH, &content_length);
214 }
215 ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
216 }
217 }
218#[derive(Debug)]
219 struct CreateTokenEndpointParamsInterceptor;
220
221 #[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
222 impl ::aws_smithy_runtime_api::client::interceptors::Intercept for CreateTokenEndpointParamsInterceptor {
223 fn name(&self) -> &'static str {
224 "CreateTokenEndpointParamsInterceptor"
225 }
226
227 fn read_before_execution(
228 &self,
229 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<'_, ::aws_smithy_runtime_api::client::interceptors::context::Input, ::aws_smithy_runtime_api::client::interceptors::context::Output, ::aws_smithy_runtime_api::client::interceptors::context::Error>,
230 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
231 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
232 let _input = context.input()
233 .downcast_ref::<CreateTokenInput>()
234 .ok_or("failed to downcast to CreateTokenInput")?;
235
236
237
238 let params = crate::config::endpoint::Params::builder()
239 .set_region(cfg.load::<::aws_types::region::Region>().map(|r|r.as_ref().to_owned()))
240.set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
241.set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
242.set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
243 .build()
244 .map_err(|err| ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err))?;
245 cfg.interceptor_state().store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
246 ::std::result::Result::Ok(())
247 }
248 }
249
250 #[non_exhaustive]
257#[derive(::std::fmt::Debug)]
258pub enum CreateTokenError {
259 AccessDeniedException(crate::types::error::AccessDeniedException),
261 AuthorizationPendingException(crate::types::error::AuthorizationPendingException),
263 ExpiredTokenException(crate::types::error::ExpiredTokenException),
265 InternalServerException(crate::types::error::InternalServerException),
267 InvalidClientException(crate::types::error::InvalidClientException),
269 InvalidGrantException(crate::types::error::InvalidGrantException),
271 InvalidRequestException(crate::types::error::InvalidRequestException),
273 InvalidScopeException(crate::types::error::InvalidScopeException),
275 SlowDownException(crate::types::error::SlowDownException),
277 UnauthorizedClientException(crate::types::error::UnauthorizedClientException),
279 UnsupportedGrantTypeException(crate::types::error::UnsupportedGrantTypeException),
281 #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
283 variable wildcard pattern and check `.code()`:
284 \
285 `err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
286 \
287 See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-CreateTokenError) for what information is available for the error.")]
288 Unhandled(crate::error::sealed_unhandled::Unhandled),
289}
290impl CreateTokenError {
291 pub fn unhandled(err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>) -> Self {
293 Self::Unhandled(crate::error::sealed_unhandled::Unhandled { source: err.into(), meta: ::std::default::Default::default() })
294 }
295
296 pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
298 Self::Unhandled(crate::error::sealed_unhandled::Unhandled { source: err.clone().into(), meta: err })
299 }
300 pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
305 match self {
306 Self::AccessDeniedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
307 Self::AuthorizationPendingException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
308 Self::ExpiredTokenException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
309 Self::InternalServerException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
310 Self::InvalidClientException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
311 Self::InvalidGrantException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
312 Self::InvalidRequestException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
313 Self::InvalidScopeException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
314 Self::SlowDownException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
315 Self::UnauthorizedClientException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
316 Self::UnsupportedGrantTypeException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
317 Self::Unhandled(e) => &e.meta,
318 }
319 }
320 pub fn is_access_denied_exception(&self) -> bool {
322 matches!(self, Self::AccessDeniedException(_))
323 }
324 pub fn is_authorization_pending_exception(&self) -> bool {
326 matches!(self, Self::AuthorizationPendingException(_))
327 }
328 pub fn is_expired_token_exception(&self) -> bool {
330 matches!(self, Self::ExpiredTokenException(_))
331 }
332 pub fn is_internal_server_exception(&self) -> bool {
334 matches!(self, Self::InternalServerException(_))
335 }
336 pub fn is_invalid_client_exception(&self) -> bool {
338 matches!(self, Self::InvalidClientException(_))
339 }
340 pub fn is_invalid_grant_exception(&self) -> bool {
342 matches!(self, Self::InvalidGrantException(_))
343 }
344 pub fn is_invalid_request_exception(&self) -> bool {
346 matches!(self, Self::InvalidRequestException(_))
347 }
348 pub fn is_invalid_scope_exception(&self) -> bool {
350 matches!(self, Self::InvalidScopeException(_))
351 }
352 pub fn is_slow_down_exception(&self) -> bool {
354 matches!(self, Self::SlowDownException(_))
355 }
356 pub fn is_unauthorized_client_exception(&self) -> bool {
358 matches!(self, Self::UnauthorizedClientException(_))
359 }
360 pub fn is_unsupported_grant_type_exception(&self) -> bool {
362 matches!(self, Self::UnsupportedGrantTypeException(_))
363 }
364}
365impl ::std::error::Error for CreateTokenError {
366 fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
367 match self {
368 Self::AccessDeniedException(_inner) =>
369 ::std::option::Option::Some(_inner)
370 ,
371 Self::AuthorizationPendingException(_inner) =>
372 ::std::option::Option::Some(_inner)
373 ,
374 Self::ExpiredTokenException(_inner) =>
375 ::std::option::Option::Some(_inner)
376 ,
377 Self::InternalServerException(_inner) =>
378 ::std::option::Option::Some(_inner)
379 ,
380 Self::InvalidClientException(_inner) =>
381 ::std::option::Option::Some(_inner)
382 ,
383 Self::InvalidGrantException(_inner) =>
384 ::std::option::Option::Some(_inner)
385 ,
386 Self::InvalidRequestException(_inner) =>
387 ::std::option::Option::Some(_inner)
388 ,
389 Self::InvalidScopeException(_inner) =>
390 ::std::option::Option::Some(_inner)
391 ,
392 Self::SlowDownException(_inner) =>
393 ::std::option::Option::Some(_inner)
394 ,
395 Self::UnauthorizedClientException(_inner) =>
396 ::std::option::Option::Some(_inner)
397 ,
398 Self::UnsupportedGrantTypeException(_inner) =>
399 ::std::option::Option::Some(_inner)
400 ,
401 Self::Unhandled(_inner) => {
402 ::std::option::Option::Some(&*_inner.source)
403 }
404 }
405 }
406}
407impl ::std::fmt::Display for CreateTokenError {
408 fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
409 match self {
410 Self::AccessDeniedException(_inner) =>
411 _inner.fmt(f)
412 ,
413 Self::AuthorizationPendingException(_inner) =>
414 _inner.fmt(f)
415 ,
416 Self::ExpiredTokenException(_inner) =>
417 _inner.fmt(f)
418 ,
419 Self::InternalServerException(_inner) =>
420 _inner.fmt(f)
421 ,
422 Self::InvalidClientException(_inner) =>
423 _inner.fmt(f)
424 ,
425 Self::InvalidGrantException(_inner) =>
426 _inner.fmt(f)
427 ,
428 Self::InvalidRequestException(_inner) =>
429 _inner.fmt(f)
430 ,
431 Self::InvalidScopeException(_inner) =>
432 _inner.fmt(f)
433 ,
434 Self::SlowDownException(_inner) =>
435 _inner.fmt(f)
436 ,
437 Self::UnauthorizedClientException(_inner) =>
438 _inner.fmt(f)
439 ,
440 Self::UnsupportedGrantTypeException(_inner) =>
441 _inner.fmt(f)
442 ,
443 Self::Unhandled(_inner) => {
444 if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
445 write!(f, "unhandled error ({code})")
446 } else {
447 f.write_str("unhandled error")
448 }
449 }
450 }
451 }
452}
453impl ::aws_smithy_types::retry::ProvideErrorKind for CreateTokenError {
454 fn code(&self) -> ::std::option::Option<&str> {
455 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
456 }
457 fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
458 ::std::option::Option::None
459 }
460}
461impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for CreateTokenError {
462 fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
463 match self {
464 Self::AccessDeniedException(_inner) =>
465 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner)
466 ,
467 Self::AuthorizationPendingException(_inner) =>
468 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner)
469 ,
470 Self::ExpiredTokenException(_inner) =>
471 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner)
472 ,
473 Self::InternalServerException(_inner) =>
474 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner)
475 ,
476 Self::InvalidClientException(_inner) =>
477 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner)
478 ,
479 Self::InvalidGrantException(_inner) =>
480 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner)
481 ,
482 Self::InvalidRequestException(_inner) =>
483 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner)
484 ,
485 Self::InvalidScopeException(_inner) =>
486 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner)
487 ,
488 Self::SlowDownException(_inner) =>
489 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner)
490 ,
491 Self::UnauthorizedClientException(_inner) =>
492 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner)
493 ,
494 Self::UnsupportedGrantTypeException(_inner) =>
495 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner)
496 ,
497 Self::Unhandled(_inner) => {
498 &_inner.meta
499 }
500 }
501 }
502}
503impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for CreateTokenError {
504 fn create_unhandled_error(
505 source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
506 meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>
507 ) -> Self {
508 Self::Unhandled(crate::error::sealed_unhandled::Unhandled { source, meta: meta.unwrap_or_default() })
509 }
510}
511impl ::aws_types::request_id::RequestId for crate::operation::create_token::CreateTokenError {
512 fn request_id(&self) -> Option<&str> {
513 self.meta().request_id()
514 }
515 }
516
517pub use crate::operation::create_token::_create_token_input::CreateTokenInput;
518
519pub use crate::operation::create_token::_create_token_output::CreateTokenOutput;
520
521mod _create_token_input;
522
523mod _create_token_output;
524
525pub mod builders;
527