aws_sdk_sso/operation/
logout.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2/// Orchestration and serialization glue logic for `Logout`.
3#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct Logout;
6impl Logout {
7    /// Creates a new `Logout`
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::logout::LogoutInput,
14    ) -> ::std::result::Result<
15        crate::operation::logout::LogoutOutput,
16        ::aws_smithy_runtime_api::client::result::SdkError<
17            crate::operation::logout::LogoutError,
18            ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
19        >,
20    > {
21        let map_err =
22            |err: ::aws_smithy_runtime_api::client::result::SdkError<
23                ::aws_smithy_runtime_api::client::interceptors::context::Error,
24                ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
25            >| { err.map_service_error(|err| err.downcast::<crate::operation::logout::LogoutError>().expect("correct error type")) };
26        let context = Self::orchestrate_with_stop_point(runtime_plugins, input, ::aws_smithy_runtime::client::orchestrator::StopPoint::None)
27            .await
28            .map_err(map_err)?;
29        let output = context.finalize().map_err(map_err)?;
30        ::std::result::Result::Ok(output.downcast::<crate::operation::logout::LogoutOutput>().expect("correct output type"))
31    }
32
33    pub(crate) async fn orchestrate_with_stop_point(
34        runtime_plugins: &::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
35        input: crate::operation::logout::LogoutInput,
36        stop_point: ::aws_smithy_runtime::client::orchestrator::StopPoint,
37    ) -> ::std::result::Result<
38        ::aws_smithy_runtime_api::client::interceptors::context::InterceptorContext,
39        ::aws_smithy_runtime_api::client::result::SdkError<
40            ::aws_smithy_runtime_api::client::interceptors::context::Error,
41            ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
42        >,
43    > {
44        let input = ::aws_smithy_runtime_api::client::interceptors::context::Input::erase(input);
45        use ::tracing::Instrument;
46        ::aws_smithy_runtime::client::orchestrator::invoke_with_stop_point("SSO", "Logout", input, runtime_plugins, stop_point)
47            // Create a parent span for the entire operation. Includes a random, internal-only,
48            // seven-digit ID for the operation orchestration so that it can be correlated in the logs.
49            .instrument(::tracing::debug_span!(
50                "SSO.Logout",
51                "rpc.service" = "SSO",
52                "rpc.method" = "Logout",
53                "sdk_invocation_id" = ::fastrand::u32(1_000_000..10_000_000),
54                "rpc.system" = "aws-api",
55            ))
56            .await
57    }
58
59    pub(crate) fn operation_runtime_plugins(
60        client_runtime_plugins: ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
61        client_config: &crate::config::Config,
62        config_override: ::std::option::Option<crate::config::Builder>,
63    ) -> ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins {
64        let mut runtime_plugins = client_runtime_plugins.with_operation_plugin(Self::new());
65
66        if let ::std::option::Option::Some(config_override) = config_override {
67            for plugin in config_override.runtime_plugins.iter().cloned() {
68                runtime_plugins = runtime_plugins.with_operation_plugin(plugin);
69            }
70            runtime_plugins = runtime_plugins.with_operation_plugin(crate::config::ConfigOverrideRuntimePlugin::new(
71                config_override,
72                client_config.config.clone(),
73                &client_config.runtime_components,
74            ));
75        }
76        runtime_plugins
77    }
78}
79impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for Logout {
80    fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
81        let mut cfg = ::aws_smithy_types::config_bag::Layer::new("Logout");
82
83        cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
84            LogoutRequestSerializer,
85        ));
86        cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
87            LogoutResponseDeserializer,
88        ));
89
90        cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
91            crate::config::auth::Params::builder()
92                .operation_name("Logout")
93                .build()
94                .expect("required fields set"),
95        ));
96
97        cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new("Logout", "SSO"));
98
99        ::std::option::Option::Some(cfg.freeze())
100    }
101
102    fn runtime_components(
103        &self,
104        _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
105    ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
106        #[allow(unused_mut)]
107        let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("Logout")
108            .with_interceptor(::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default())
109            .with_interceptor(LogoutEndpointParamsInterceptor)
110            .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
111                crate::operation::logout::LogoutError,
112            >::new())
113            .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
114                crate::operation::logout::LogoutError,
115            >::new())
116            .with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<
117                crate::operation::logout::LogoutError,
118            >::new());
119
120        ::std::borrow::Cow::Owned(rcb)
121    }
122}
123
124#[derive(Debug)]
125struct LogoutResponseDeserializer;
126impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for LogoutResponseDeserializer {
127    fn deserialize_nonstreaming(
128        &self,
129        response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
130    ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
131        let (success, status) = (response.status().is_success(), response.status().as_u16());
132        let headers = response.headers();
133        let body = response.body().bytes().expect("body loaded");
134        #[allow(unused_mut)]
135        let mut force_error = false;
136        ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
137        let parse_result = if !success && status != 200 || force_error {
138            crate::protocol_serde::shape_logout::de_logout_http_error(status, headers, body)
139        } else {
140            crate::protocol_serde::shape_logout::de_logout_http_response(status, headers, body)
141        };
142        crate::protocol_serde::type_erase_result(parse_result)
143    }
144}
145#[derive(Debug)]
146struct LogoutRequestSerializer;
147impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for LogoutRequestSerializer {
148    #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
149    fn serialize_input(
150        &self,
151        input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
152        _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
153    ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
154        let input = input.downcast::<crate::operation::logout::LogoutInput>().expect("correct type");
155        let _header_serialization_settings = _cfg
156            .load::<crate::serialization_settings::HeaderSerializationSettings>()
157            .cloned()
158            .unwrap_or_default();
159        let mut request_builder = {
160            fn uri_base(
161                _input: &crate::operation::logout::LogoutInput,
162                output: &mut ::std::string::String,
163            ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
164                use ::std::fmt::Write as _;
165                ::std::write!(output, "/logout").expect("formatting should succeed");
166                ::std::result::Result::Ok(())
167            }
168            #[allow(clippy::unnecessary_wraps)]
169            fn update_http_builder(
170                input: &crate::operation::logout::LogoutInput,
171                builder: ::http::request::Builder,
172            ) -> ::std::result::Result<::http::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
173                let mut uri = ::std::string::String::new();
174                uri_base(input, &mut uri)?;
175                let builder = crate::protocol_serde::shape_logout::ser_logout_headers(input, builder)?;
176                ::std::result::Result::Ok(builder.method("POST").uri(uri))
177            }
178            let mut builder = update_http_builder(&input, ::http::request::Builder::new())?;
179            builder
180        };
181        let body = ::aws_smithy_types::body::SdkBody::from("");
182
183        ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
184    }
185}
186#[derive(Debug)]
187struct LogoutEndpointParamsInterceptor;
188
189impl ::aws_smithy_runtime_api::client::interceptors::Intercept for LogoutEndpointParamsInterceptor {
190    fn name(&self) -> &'static str {
191        "LogoutEndpointParamsInterceptor"
192    }
193
194    fn read_before_execution(
195        &self,
196        context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
197            '_,
198            ::aws_smithy_runtime_api::client::interceptors::context::Input,
199            ::aws_smithy_runtime_api::client::interceptors::context::Output,
200            ::aws_smithy_runtime_api::client::interceptors::context::Error,
201        >,
202        cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
203    ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
204        let _input = context.input().downcast_ref::<LogoutInput>().ok_or("failed to downcast to LogoutInput")?;
205
206        let params = crate::config::endpoint::Params::builder()
207            .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
208            .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
209            .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
210            .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
211            .build()
212            .map_err(|err| {
213                ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
214            })?;
215        cfg.interceptor_state()
216            .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
217        ::std::result::Result::Ok(())
218    }
219}
220
221// The get_* functions below are generated from JMESPath expressions in the
222// operationContextParams trait. They target the operation's input shape.
223
224/// Error type for the `LogoutError` operation.
225#[non_exhaustive]
226#[derive(::std::fmt::Debug)]
227pub enum LogoutError {
228    /// <p>Indicates that a problem occurred with the input to the request. For example, a required parameter might be missing or out of range.</p>
229    InvalidRequestException(crate::types::error::InvalidRequestException),
230    /// <p>Indicates that the request is being made too frequently and is more than what the server can handle.</p>
231    TooManyRequestsException(crate::types::error::TooManyRequestsException),
232    /// <p>Indicates that the request is not authorized. This can happen due to an invalid access token in the request.</p>
233    UnauthorizedException(crate::types::error::UnauthorizedException),
234    /// An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
235    #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
236    variable wildcard pattern and check `.code()`:
237     \
238    &nbsp;&nbsp;&nbsp;`err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
239     \
240    See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-LogoutError) for what information is available for the error.")]
241    Unhandled(crate::error::sealed_unhandled::Unhandled),
242}
243impl LogoutError {
244    /// Creates the `LogoutError::Unhandled` variant from any error type.
245    pub fn unhandled(
246        err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
247    ) -> Self {
248        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
249            source: err.into(),
250            meta: ::std::default::Default::default(),
251        })
252    }
253
254    /// Creates the `LogoutError::Unhandled` variant from an [`ErrorMetadata`](::aws_smithy_types::error::ErrorMetadata).
255    pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
256        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
257            source: err.clone().into(),
258            meta: err,
259        })
260    }
261    ///
262    /// Returns error metadata, which includes the error code, message,
263    /// request ID, and potentially additional information.
264    ///
265    pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
266        match self {
267            Self::InvalidRequestException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
268            Self::TooManyRequestsException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
269            Self::UnauthorizedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
270            Self::Unhandled(e) => &e.meta,
271        }
272    }
273    /// Returns `true` if the error kind is `LogoutError::InvalidRequestException`.
274    pub fn is_invalid_request_exception(&self) -> bool {
275        matches!(self, Self::InvalidRequestException(_))
276    }
277    /// Returns `true` if the error kind is `LogoutError::TooManyRequestsException`.
278    pub fn is_too_many_requests_exception(&self) -> bool {
279        matches!(self, Self::TooManyRequestsException(_))
280    }
281    /// Returns `true` if the error kind is `LogoutError::UnauthorizedException`.
282    pub fn is_unauthorized_exception(&self) -> bool {
283        matches!(self, Self::UnauthorizedException(_))
284    }
285}
286impl ::std::error::Error for LogoutError {
287    fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
288        match self {
289            Self::InvalidRequestException(_inner) => ::std::option::Option::Some(_inner),
290            Self::TooManyRequestsException(_inner) => ::std::option::Option::Some(_inner),
291            Self::UnauthorizedException(_inner) => ::std::option::Option::Some(_inner),
292            Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
293        }
294    }
295}
296impl ::std::fmt::Display for LogoutError {
297    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
298        match self {
299            Self::InvalidRequestException(_inner) => _inner.fmt(f),
300            Self::TooManyRequestsException(_inner) => _inner.fmt(f),
301            Self::UnauthorizedException(_inner) => _inner.fmt(f),
302            Self::Unhandled(_inner) => {
303                if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
304                    write!(f, "unhandled error ({code})")
305                } else {
306                    f.write_str("unhandled error")
307                }
308            }
309        }
310    }
311}
312impl ::aws_smithy_types::retry::ProvideErrorKind for LogoutError {
313    fn code(&self) -> ::std::option::Option<&str> {
314        ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
315    }
316    fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
317        ::std::option::Option::None
318    }
319}
320impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for LogoutError {
321    fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
322        match self {
323            Self::InvalidRequestException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
324            Self::TooManyRequestsException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
325            Self::UnauthorizedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
326            Self::Unhandled(_inner) => &_inner.meta,
327        }
328    }
329}
330impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for LogoutError {
331    fn create_unhandled_error(
332        source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
333        meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
334    ) -> Self {
335        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
336            source,
337            meta: meta.unwrap_or_default(),
338        })
339    }
340}
341impl ::aws_types::request_id::RequestId for crate::operation::logout::LogoutError {
342    fn request_id(&self) -> Option<&str> {
343        self.meta().request_id()
344    }
345}
346
347pub use crate::operation::logout::_logout_output::LogoutOutput;
348
349pub use crate::operation::logout::_logout_input::LogoutInput;
350
351mod _logout_input;
352
353mod _logout_output;
354
355/// Builders
356pub mod builders;