Skip to main content

aws_sdk_sso/operation/
list_account_roles.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2/// Orchestration and serialization glue logic for `ListAccountRoles`.
3#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct ListAccountRoles;
6impl ListAccountRoles {
7    /// Creates a new `ListAccountRoles`
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::list_account_roles::ListAccountRolesInput,
14                    ) -> ::std::result::Result<crate::operation::list_account_roles::ListAccountRolesOutput, ::aws_smithy_runtime_api::client::result::SdkError<crate::operation::list_account_roles::ListAccountRolesError, ::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::list_account_roles::ListAccountRolesError>().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::list_account_roles::ListAccountRolesOutput>().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::list_account_roles::ListAccountRolesInput,
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",
36                            "ListAccountRoles",
37                            input,
38                            runtime_plugins,
39                            stop_point
40                        )
41                        // Create a parent span for the entire operation. Includes a random, internal-only,
42                        // seven-digit ID for the operation orchestration so that it can be correlated in the logs.
43                        .instrument(::tracing::debug_span!(
44                                "SSO.ListAccountRoles",
45                                "rpc.service" = "SSO",
46                                "rpc.method" = "ListAccountRoles",
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 ListAccountRoles {
72                fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
73                    let mut cfg = ::aws_smithy_types::config_bag::Layer::new("ListAccountRoles");
74
75                    cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(ListAccountRolesRequestSerializer));
76                    cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(ListAccountRolesResponseDeserializer));
77
78                    cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
79                        crate::config::auth::Params::builder()
80                            .operation_name("ListAccountRoles")
81                            .build()
82                            .expect("required fields set")
83                    ));
84
85                    cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new(
86                            "ListAccountRoles",
87                            "SSO",
88                        ));
89
90                    ::std::option::Option::Some(cfg.freeze())
91                }
92
93                fn runtime_components(&self, _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
94                    #[allow(unused_mut)]
95                    let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("ListAccountRoles")
96                            .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(ListAccountRolesTelemetryInputCaptureInterceptor))
97.with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default()))
98.with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(ListAccountRolesEndpointParamsInterceptor))
99                            .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<crate::operation::list_account_roles::ListAccountRolesError>::new())
100.with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<crate::operation::list_account_roles::ListAccountRolesError>::new())
101.with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<crate::operation::list_account_roles::ListAccountRolesError>::new());
102
103                    ::std::borrow::Cow::Owned(rcb)
104                }
105            }
106
107            #[derive(Debug)]
108            struct ListAccountRolesTelemetryInputCaptureInterceptor;
109
110            #[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
111            impl ::aws_smithy_runtime_api::client::interceptors::Intercept for ListAccountRolesTelemetryInputCaptureInterceptor {
112                fn name(&self) -> &'static str {
113                    "ListAccountRolesTelemetryInputCaptureInterceptor"
114                }
115
116                fn read_before_execution(
117                    &self,
118                    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>,
119                    cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
120                ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
121                    // Nothing to do unless the customer opted in by naming members to record.
122                    let ::std::option::Option::Some(requested) = cfg.load::<::aws_smithy_types::telemetry::RequestedTelemetryAttributes>().filter(|r| !r.is_empty()) else {
123                        return ::std::result::Result::Ok(());
124                    };
125
126                    let ::std::option::Option::Some(input) = context.input().downcast_ref::<ListAccountRolesInput>() else {
127                        // A mismatched input is not this interceptor's concern; skip quietly.
128                        return ::std::result::Result::Ok(());
129                    };
130
131                    let mut captured = ::aws_smithy_types::telemetry::CapturedTelemetryAttributes::default();
132                    if requested.should_capture("nextToken") {
133                        if let ::std::option::Option::Some(value) = input.next_token.as_deref() {
134                            captured.insert("nextToken", value);
135                        }
136                    }
137if requested.should_capture("accountId") {
138                        if let ::std::option::Option::Some(value) = input.account_id.as_deref() {
139                            captured.insert("accountId", value);
140                        }
141                    }
142
143                    cfg.interceptor_state().store_put(captured);
144                    ::std::result::Result::Ok(())
145                }
146            }
147#[derive(Debug)]
148            struct ListAccountRolesResponseDeserializer;
149            impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for ListAccountRolesResponseDeserializer {
150
151
152                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 {
153                    let (success, status) = (response.status().is_success(), response.status().as_u16());
154            let headers = response.headers();
155            let body = response.body().bytes().expect("body loaded");
156            #[allow(unused_mut)]
157            let mut force_error = false;
158            ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
159            let parse_result = if !success && status != 200 || force_error {
160                crate::protocol_serde::shape_list_account_roles::de_list_account_roles_http_error(status, headers, body)
161            } else {
162                crate::protocol_serde::shape_list_account_roles::de_list_account_roles_http_response(status, headers, body)
163            };
164            crate::protocol_serde::type_erase_result(parse_result)
165                }
166            }
167#[derive(Debug)]
168            struct ListAccountRolesRequestSerializer;
169            impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for ListAccountRolesRequestSerializer {
170                #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
171                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> {
172                    let input = input.downcast::<crate::operation::list_account_roles::ListAccountRolesInput>().expect("correct type");
173                    let _header_serialization_settings = _cfg.load::<crate::serialization_settings::HeaderSerializationSettings>().cloned().unwrap_or_default();
174                    let mut request_builder = {
175                        #[allow(clippy::uninlined_format_args)]
176fn uri_base(_input: &crate::operation::list_account_roles::ListAccountRolesInput, output: &mut ::std::string::String) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
177    use ::std::fmt::Write as _;
178    ::std::write!(output, "/assignment/roles").expect("formatting should succeed");
179    ::std::result::Result::Ok(())
180}
181fn uri_query(_input: &crate::operation::list_account_roles::ListAccountRolesInput, mut output: &mut ::std::string::String) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
182    let mut query = ::aws_smithy_http::query::Writer::new(output);
183    if let ::std::option::Option::Some(inner_1) = &_input.next_token {
184         {
185            query.push_kv("next_token", &::aws_smithy_http::query::fmt_string(inner_1));
186        }
187    }
188    if let ::std::option::Option::Some(inner_2) = &_input.max_results {
189         {
190            query.push_kv("max_result", ::aws_smithy_types::primitive::Encoder::from(*inner_2).encode());
191        }
192    }
193    let inner_3 = &_input.account_id;
194    let inner_3 = inner_3.as_ref().ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("account_id", "cannot be empty or unset"))?;
195    if inner_3.is_empty() {
196        return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field("account_id", "cannot be empty or unset"));
197    }
198    query.push_kv("account_id", &::aws_smithy_http::query::fmt_string(inner_3));
199    ::std::result::Result::Ok(())
200}
201#[allow(clippy::unnecessary_wraps)]
202fn update_http_builder(
203                input: &crate::operation::list_account_roles::ListAccountRolesInput,
204                builder: ::http_1x::request::Builder
205            ) -> ::std::result::Result<::http_1x::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
206    let mut uri = ::std::string::String::new();
207    uri_base(input, &mut uri)?;
208    uri_query(input, &mut uri)?;
209    let builder = crate::protocol_serde::shape_list_account_roles::ser_list_account_roles_headers(input, builder)?;
210    ::std::result::Result::Ok(builder.method("GET").uri(uri))
211}
212let mut builder = update_http_builder(&input, ::http_1x::request::Builder::new())?;
213builder
214                    };
215                    let body = ::aws_smithy_types::body::SdkBody::from("");
216
217                    ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
218                }
219            }
220#[derive(Debug)]
221            struct ListAccountRolesEndpointParamsInterceptor;
222
223            #[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
224            impl ::aws_smithy_runtime_api::client::interceptors::Intercept for ListAccountRolesEndpointParamsInterceptor {
225                fn name(&self) -> &'static str {
226                    "ListAccountRolesEndpointParamsInterceptor"
227                }
228
229                fn read_before_execution(
230                    &self,
231                    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>,
232                    cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
233                ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
234                    let _input = context.input()
235                        .downcast_ref::<ListAccountRolesInput>()
236                        .ok_or("failed to downcast to ListAccountRolesInput")?;
237
238
239
240                    let params = crate::config::endpoint::Params::builder()
241                        .set_region(cfg.load::<::aws_types::region::Region>().map(|r|r.as_ref().to_owned()))
242.set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
243.set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
244.set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
245                        .build()
246                        .map_err(|err| ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err))?;
247                    cfg.interceptor_state().store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
248                    ::std::result::Result::Ok(())
249                }
250            }
251
252            // The get_* functions below are generated from JMESPath expressions in the
253            // operationContextParams trait. They target the operation's input shape.
254
255
256
257/// Error type for the `ListAccountRolesError` operation.
258#[non_exhaustive]
259#[derive(::std::fmt::Debug)]
260pub enum ListAccountRolesError {
261    /// <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>
262    InvalidRequestException(crate::types::error::InvalidRequestException),
263    /// <p>The specified resource doesn't exist.</p>
264    ResourceNotFoundException(crate::types::error::ResourceNotFoundException),
265    /// <p>Indicates that the request is being made too frequently and is more than what the server can handle.</p>
266    TooManyRequestsException(crate::types::error::TooManyRequestsException),
267    /// <p>Indicates that the request is not authorized. This can happen due to an invalid access token in the request.</p>
268    UnauthorizedException(crate::types::error::UnauthorizedException),
269    /// An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
270                    #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
271    variable wildcard pattern and check `.code()`:
272     \
273    &nbsp;&nbsp;&nbsp;`err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
274     \
275    See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-ListAccountRolesError) for what information is available for the error.")]
276                    Unhandled(crate::error::sealed_unhandled::Unhandled),
277}
278impl ListAccountRolesError {
279    /// Creates the `ListAccountRolesError::Unhandled` variant from any error type.
280                    pub fn unhandled(err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>) -> Self {
281                        Self::Unhandled(crate::error::sealed_unhandled::Unhandled { source: err.into(), meta: ::std::default::Default::default() })
282                    }
283
284                    /// Creates the `ListAccountRolesError::Unhandled` variant from an [`ErrorMetadata`](::aws_smithy_types::error::ErrorMetadata).
285                    pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
286                        Self::Unhandled(crate::error::sealed_unhandled::Unhandled { source: err.clone().into(), meta: err })
287                    }
288    ///
289    /// Returns error metadata, which includes the error code, message,
290    /// request ID, and potentially additional information.
291    ///
292    pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
293        match self {
294            Self::InvalidRequestException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
295            Self::ResourceNotFoundException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
296            Self::TooManyRequestsException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
297            Self::UnauthorizedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
298            Self::Unhandled(e) => &e.meta,
299        }
300    }
301    /// Returns `true` if the error kind is `ListAccountRolesError::InvalidRequestException`.
302    pub fn is_invalid_request_exception(&self) -> bool {
303        matches!(self, Self::InvalidRequestException(_))
304    }
305    /// Returns `true` if the error kind is `ListAccountRolesError::ResourceNotFoundException`.
306    pub fn is_resource_not_found_exception(&self) -> bool {
307        matches!(self, Self::ResourceNotFoundException(_))
308    }
309    /// Returns `true` if the error kind is `ListAccountRolesError::TooManyRequestsException`.
310    pub fn is_too_many_requests_exception(&self) -> bool {
311        matches!(self, Self::TooManyRequestsException(_))
312    }
313    /// Returns `true` if the error kind is `ListAccountRolesError::UnauthorizedException`.
314    pub fn is_unauthorized_exception(&self) -> bool {
315        matches!(self, Self::UnauthorizedException(_))
316    }
317}
318impl ::std::error::Error for ListAccountRolesError {
319    fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
320        match self {
321            Self::InvalidRequestException(_inner) =>
322            ::std::option::Option::Some(_inner)
323            ,
324            Self::ResourceNotFoundException(_inner) =>
325            ::std::option::Option::Some(_inner)
326            ,
327            Self::TooManyRequestsException(_inner) =>
328            ::std::option::Option::Some(_inner)
329            ,
330            Self::UnauthorizedException(_inner) =>
331            ::std::option::Option::Some(_inner)
332            ,
333            Self::Unhandled(_inner) => {
334                ::std::option::Option::Some(&*_inner.source)
335            }
336        }
337    }
338}
339impl ::std::fmt::Display for ListAccountRolesError {
340    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
341        match self {
342            Self::InvalidRequestException(_inner) =>
343            _inner.fmt(f)
344            ,
345            Self::ResourceNotFoundException(_inner) =>
346            _inner.fmt(f)
347            ,
348            Self::TooManyRequestsException(_inner) =>
349            _inner.fmt(f)
350            ,
351            Self::UnauthorizedException(_inner) =>
352            _inner.fmt(f)
353            ,
354            Self::Unhandled(_inner) => {
355                if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
356                                                        write!(f, "unhandled error ({code})")
357                                                    } else {
358                                                        f.write_str("unhandled error")
359                                                    }
360            }
361        }
362    }
363}
364impl ::aws_smithy_types::retry::ProvideErrorKind for ListAccountRolesError {
365    fn code(&self) -> ::std::option::Option<&str> {
366        ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
367    }
368    fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
369        ::std::option::Option::None
370    }
371}
372impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for ListAccountRolesError {
373    fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
374        match self {
375            Self::InvalidRequestException(_inner) =>
376            ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner)
377            ,
378            Self::ResourceNotFoundException(_inner) =>
379            ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner)
380            ,
381            Self::TooManyRequestsException(_inner) =>
382            ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner)
383            ,
384            Self::UnauthorizedException(_inner) =>
385            ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner)
386            ,
387            Self::Unhandled(_inner) => {
388                &_inner.meta
389            }
390        }
391    }
392}
393impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for ListAccountRolesError {
394    fn create_unhandled_error(
395                        source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
396                        meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>
397                    ) -> Self {
398        Self::Unhandled(crate::error::sealed_unhandled::Unhandled { source, meta: meta.unwrap_or_default() })
399    }
400}
401impl ::aws_types::request_id::RequestId for crate::operation::list_account_roles::ListAccountRolesError {
402                                fn request_id(&self) -> Option<&str> {
403                                    self.meta().request_id()
404                                }
405                            }
406
407pub use crate::operation::list_account_roles::_list_account_roles_input::ListAccountRolesInput;
408
409pub use crate::operation::list_account_roles::_list_account_roles_output::ListAccountRolesOutput;
410
411mod _list_account_roles_input;
412
413mod _list_account_roles_output;
414
415/// Builders
416pub mod builders;
417
418/// Paginator for this operation
419pub mod paginator;
420