1#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct ListBots;
6impl ListBots {
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::list_bots::ListBotsInput,
14 ) -> ::std::result::Result<
15 crate::operation::list_bots::ListBotsOutput,
16 ::aws_smithy_runtime_api::client::result::SdkError<
17 crate::operation::list_bots::ListBotsError,
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::list_bots::ListBotsError>().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(
31 output
32 .downcast::<crate::operation::list_bots::ListBotsOutput>()
33 .expect("correct output type"),
34 )
35 }
36
37 pub(crate) async fn orchestrate_with_stop_point(
38 runtime_plugins: &::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
39 input: crate::operation::list_bots::ListBotsInput,
40 stop_point: ::aws_smithy_runtime::client::orchestrator::StopPoint,
41 ) -> ::std::result::Result<
42 ::aws_smithy_runtime_api::client::interceptors::context::InterceptorContext,
43 ::aws_smithy_runtime_api::client::result::SdkError<
44 ::aws_smithy_runtime_api::client::interceptors::context::Error,
45 ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
46 >,
47 > {
48 let input = ::aws_smithy_runtime_api::client::interceptors::context::Input::erase(input);
49 use ::tracing::Instrument;
50 ::aws_smithy_runtime::client::orchestrator::invoke_with_stop_point("Chime", "ListBots", input, runtime_plugins, stop_point)
51 .instrument(::tracing::debug_span!(
54 "Chime.ListBots",
55 "rpc.service" = "Chime",
56 "rpc.method" = "ListBots",
57 "sdk_invocation_id" = ::fastrand::u32(1_000_000..10_000_000),
58 "rpc.system" = "aws-api",
59 ))
60 .await
61 }
62
63 pub(crate) fn operation_runtime_plugins(
64 client_runtime_plugins: ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
65 client_config: &crate::config::Config,
66 config_override: ::std::option::Option<crate::config::Builder>,
67 ) -> ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins {
68 let mut runtime_plugins = client_runtime_plugins.with_operation_plugin(Self::new());
69
70 if let ::std::option::Option::Some(config_override) = config_override {
71 for plugin in config_override.runtime_plugins.iter().cloned() {
72 runtime_plugins = runtime_plugins.with_operation_plugin(plugin);
73 }
74 runtime_plugins = runtime_plugins.with_operation_plugin(crate::config::ConfigOverrideRuntimePlugin::new(
75 config_override,
76 client_config.config.clone(),
77 &client_config.runtime_components,
78 ));
79 }
80 runtime_plugins
81 }
82}
83impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for ListBots {
84 fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
85 let mut cfg = ::aws_smithy_types::config_bag::Layer::new("ListBots");
86
87 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
88 ListBotsRequestSerializer,
89 ));
90 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
91 ListBotsResponseDeserializer,
92 ));
93
94 cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
95 crate::config::auth::Params::builder()
96 .operation_name("ListBots")
97 .build()
98 .expect("required fields set"),
99 ));
100
101 cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::SensitiveOutput);
102 cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new("ListBots", "Chime"));
103 let mut signing_options = ::aws_runtime::auth::SigningOptions::default();
104 signing_options.double_uri_encode = true;
105 signing_options.content_sha256_header = false;
106 signing_options.normalize_uri_path = true;
107 signing_options.payload_override = None;
108
109 cfg.store_put(::aws_runtime::auth::SigV4OperationSigningConfig {
110 signing_options,
111 ..::std::default::Default::default()
112 });
113
114 ::std::option::Option::Some(cfg.freeze())
115 }
116
117 fn runtime_components(
118 &self,
119 _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
120 ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
121 #[allow(unused_mut)]
122 let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("ListBots")
123 .with_interceptor(::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default())
124 .with_interceptor(ListBotsEndpointParamsInterceptor)
125 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
126 crate::operation::list_bots::ListBotsError,
127 >::new())
128 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
129 crate::operation::list_bots::ListBotsError,
130 >::new())
131 .with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<
132 crate::operation::list_bots::ListBotsError,
133 >::new());
134
135 ::std::borrow::Cow::Owned(rcb)
136 }
137}
138
139#[derive(Debug)]
140struct ListBotsResponseDeserializer;
141impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for ListBotsResponseDeserializer {
142 fn deserialize_nonstreaming(
143 &self,
144 response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
145 ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
146 let (success, status) = (response.status().is_success(), response.status().as_u16());
147 let headers = response.headers();
148 let body = response.body().bytes().expect("body loaded");
149 #[allow(unused_mut)]
150 let mut force_error = false;
151 ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
152 let parse_result = if !success && status != 200 || force_error {
153 crate::protocol_serde::shape_list_bots::de_list_bots_http_error(status, headers, body)
154 } else {
155 crate::protocol_serde::shape_list_bots::de_list_bots_http_response(status, headers, body)
156 };
157 crate::protocol_serde::type_erase_result(parse_result)
158 }
159}
160#[derive(Debug)]
161struct ListBotsRequestSerializer;
162impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for ListBotsRequestSerializer {
163 #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
164 fn serialize_input(
165 &self,
166 input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
167 _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
168 ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
169 let input = input.downcast::<crate::operation::list_bots::ListBotsInput>().expect("correct type");
170 let _header_serialization_settings = _cfg
171 .load::<crate::serialization_settings::HeaderSerializationSettings>()
172 .cloned()
173 .unwrap_or_default();
174 let mut request_builder = {
175 #[allow(clippy::uninlined_format_args)]
176 fn uri_base(
177 _input: &crate::operation::list_bots::ListBotsInput,
178 output: &mut ::std::string::String,
179 ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
180 use ::std::fmt::Write as _;
181 let input_1 = &_input.account_id;
182 let input_1 = input_1
183 .as_ref()
184 .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("account_id", "cannot be empty or unset"))?;
185 let account_id = ::aws_smithy_http::label::fmt_string(input_1, ::aws_smithy_http::label::EncodingStrategy::Default);
186 if account_id.is_empty() {
187 return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
188 "account_id",
189 "cannot be empty or unset",
190 ));
191 }
192 ::std::write!(output, "/accounts/{AccountId}/bots", AccountId = account_id).expect("formatting should succeed");
193 ::std::result::Result::Ok(())
194 }
195 fn uri_query(
196 _input: &crate::operation::list_bots::ListBotsInput,
197 mut output: &mut ::std::string::String,
198 ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
199 let mut query = ::aws_smithy_http::query::Writer::new(output);
200 if let ::std::option::Option::Some(inner_2) = &_input.max_results {
201 {
202 query.push_kv("max-results", ::aws_smithy_types::primitive::Encoder::from(*inner_2).encode());
203 }
204 }
205 if let ::std::option::Option::Some(inner_3) = &_input.next_token {
206 {
207 query.push_kv("next-token", &::aws_smithy_http::query::fmt_string(inner_3));
208 }
209 }
210 ::std::result::Result::Ok(())
211 }
212 #[allow(clippy::unnecessary_wraps)]
213 fn update_http_builder(
214 input: &crate::operation::list_bots::ListBotsInput,
215 builder: ::http::request::Builder,
216 ) -> ::std::result::Result<::http::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
217 let mut uri = ::std::string::String::new();
218 uri_base(input, &mut uri)?;
219 uri_query(input, &mut uri)?;
220 ::std::result::Result::Ok(builder.method("GET").uri(uri))
221 }
222 let mut builder = update_http_builder(&input, ::http::request::Builder::new())?;
223 builder
224 };
225 let body = ::aws_smithy_types::body::SdkBody::from("");
226
227 ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
228 }
229}
230#[derive(Debug)]
231struct ListBotsEndpointParamsInterceptor;
232
233impl ::aws_smithy_runtime_api::client::interceptors::Intercept for ListBotsEndpointParamsInterceptor {
234 fn name(&self) -> &'static str {
235 "ListBotsEndpointParamsInterceptor"
236 }
237
238 fn read_before_execution(
239 &self,
240 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
241 '_,
242 ::aws_smithy_runtime_api::client::interceptors::context::Input,
243 ::aws_smithy_runtime_api::client::interceptors::context::Output,
244 ::aws_smithy_runtime_api::client::interceptors::context::Error,
245 >,
246 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
247 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
248 let _input = context
249 .input()
250 .downcast_ref::<ListBotsInput>()
251 .ok_or("failed to downcast to ListBotsInput")?;
252
253 let params = crate::config::endpoint::Params::builder()
254 .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
255 .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
256 .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
257 .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
258 .build()
259 .map_err(|err| {
260 ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
261 })?;
262 cfg.interceptor_state()
263 .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
264 ::std::result::Result::Ok(())
265 }
266}
267
268#[non_exhaustive]
273#[derive(::std::fmt::Debug)]
274pub enum ListBotsError {
275 BadRequestException(crate::types::error::BadRequestException),
277 ForbiddenException(crate::types::error::ForbiddenException),
279 NotFoundException(crate::types::error::NotFoundException),
281 ServiceFailureException(crate::types::error::ServiceFailureException),
283 ServiceUnavailableException(crate::types::error::ServiceUnavailableException),
285 ThrottledClientException(crate::types::error::ThrottledClientException),
287 UnauthorizedClientException(crate::types::error::UnauthorizedClientException),
289 #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
291 variable wildcard pattern and check `.code()`:
292 \
293 `err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
294 \
295 See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-ListBotsError) for what information is available for the error.")]
296 Unhandled(crate::error::sealed_unhandled::Unhandled),
297}
298impl ListBotsError {
299 pub fn unhandled(
301 err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
302 ) -> Self {
303 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
304 source: err.into(),
305 meta: ::std::default::Default::default(),
306 })
307 }
308
309 pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
311 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
312 source: err.clone().into(),
313 meta: err,
314 })
315 }
316 pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
321 match self {
322 Self::BadRequestException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
323 Self::ForbiddenException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
324 Self::NotFoundException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
325 Self::ServiceFailureException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
326 Self::ServiceUnavailableException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
327 Self::ThrottledClientException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
328 Self::UnauthorizedClientException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
329 Self::Unhandled(e) => &e.meta,
330 }
331 }
332 pub fn is_bad_request_exception(&self) -> bool {
334 matches!(self, Self::BadRequestException(_))
335 }
336 pub fn is_forbidden_exception(&self) -> bool {
338 matches!(self, Self::ForbiddenException(_))
339 }
340 pub fn is_not_found_exception(&self) -> bool {
342 matches!(self, Self::NotFoundException(_))
343 }
344 pub fn is_service_failure_exception(&self) -> bool {
346 matches!(self, Self::ServiceFailureException(_))
347 }
348 pub fn is_service_unavailable_exception(&self) -> bool {
350 matches!(self, Self::ServiceUnavailableException(_))
351 }
352 pub fn is_throttled_client_exception(&self) -> bool {
354 matches!(self, Self::ThrottledClientException(_))
355 }
356 pub fn is_unauthorized_client_exception(&self) -> bool {
358 matches!(self, Self::UnauthorizedClientException(_))
359 }
360}
361impl ::std::error::Error for ListBotsError {
362 fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
363 match self {
364 Self::BadRequestException(_inner) => ::std::option::Option::Some(_inner),
365 Self::ForbiddenException(_inner) => ::std::option::Option::Some(_inner),
366 Self::NotFoundException(_inner) => ::std::option::Option::Some(_inner),
367 Self::ServiceFailureException(_inner) => ::std::option::Option::Some(_inner),
368 Self::ServiceUnavailableException(_inner) => ::std::option::Option::Some(_inner),
369 Self::ThrottledClientException(_inner) => ::std::option::Option::Some(_inner),
370 Self::UnauthorizedClientException(_inner) => ::std::option::Option::Some(_inner),
371 Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
372 }
373 }
374}
375impl ::std::fmt::Display for ListBotsError {
376 fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
377 match self {
378 Self::BadRequestException(_inner) => _inner.fmt(f),
379 Self::ForbiddenException(_inner) => _inner.fmt(f),
380 Self::NotFoundException(_inner) => _inner.fmt(f),
381 Self::ServiceFailureException(_inner) => _inner.fmt(f),
382 Self::ServiceUnavailableException(_inner) => _inner.fmt(f),
383 Self::ThrottledClientException(_inner) => _inner.fmt(f),
384 Self::UnauthorizedClientException(_inner) => _inner.fmt(f),
385 Self::Unhandled(_inner) => {
386 if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
387 write!(f, "unhandled error ({code})")
388 } else {
389 f.write_str("unhandled error")
390 }
391 }
392 }
393 }
394}
395impl ::aws_smithy_types::retry::ProvideErrorKind for ListBotsError {
396 fn code(&self) -> ::std::option::Option<&str> {
397 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
398 }
399 fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
400 ::std::option::Option::None
401 }
402}
403impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for ListBotsError {
404 fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
405 match self {
406 Self::BadRequestException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
407 Self::ForbiddenException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
408 Self::NotFoundException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
409 Self::ServiceFailureException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
410 Self::ServiceUnavailableException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
411 Self::ThrottledClientException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
412 Self::UnauthorizedClientException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
413 Self::Unhandled(_inner) => &_inner.meta,
414 }
415 }
416}
417impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for ListBotsError {
418 fn create_unhandled_error(
419 source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
420 meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
421 ) -> Self {
422 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
423 source,
424 meta: meta.unwrap_or_default(),
425 })
426 }
427}
428impl ::aws_types::request_id::RequestId for crate::operation::list_bots::ListBotsError {
429 fn request_id(&self) -> Option<&str> {
430 self.meta().request_id()
431 }
432}
433
434pub use crate::operation::list_bots::_list_bots_output::ListBotsOutput;
435
436pub use crate::operation::list_bots::_list_bots_input::ListBotsInput;
437
438mod _list_bots_input;
439
440mod _list_bots_output;
441
442pub mod builders;
444
445pub mod paginator;