1#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct ListDataSets;
6impl ListDataSets {
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_data_sets::ListDataSetsInput,
14 ) -> ::std::result::Result<
15 crate::operation::list_data_sets::ListDataSetsOutput,
16 ::aws_smithy_runtime_api::client::result::SdkError<
17 crate::operation::list_data_sets::ListDataSetsError,
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::list_data_sets::ListDataSetsError>()
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::list_data_sets::ListDataSetsOutput>()
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::list_data_sets::ListDataSetsInput,
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("m2", "ListDataSets", input, runtime_plugins, stop_point)
55 .instrument(::tracing::debug_span!(
58 "m2.ListDataSets",
59 "rpc.service" = "m2",
60 "rpc.method" = "ListDataSets",
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
74 if let ::std::option::Option::Some(config_override) = config_override {
75 for plugin in config_override.runtime_plugins.iter().cloned() {
76 runtime_plugins = runtime_plugins.with_operation_plugin(plugin);
77 }
78 runtime_plugins = runtime_plugins.with_operation_plugin(crate::config::ConfigOverrideRuntimePlugin::new(
79 config_override,
80 client_config.config.clone(),
81 &client_config.runtime_components,
82 ));
83 }
84 runtime_plugins
85 }
86}
87impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for ListDataSets {
88 fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
89 let mut cfg = ::aws_smithy_types::config_bag::Layer::new("ListDataSets");
90
91 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
92 ListDataSetsRequestSerializer,
93 ));
94 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
95 ListDataSetsResponseDeserializer,
96 ));
97
98 cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
99 crate::config::auth::Params::builder()
100 .operation_name("ListDataSets")
101 .build()
102 .expect("required fields set"),
103 ));
104
105 cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new("ListDataSets", "m2"));
106 let mut signing_options = ::aws_runtime::auth::SigningOptions::default();
107 signing_options.double_uri_encode = true;
108 signing_options.content_sha256_header = false;
109 signing_options.normalize_uri_path = true;
110 signing_options.payload_override = None;
111
112 cfg.store_put(::aws_runtime::auth::SigV4OperationSigningConfig {
113 signing_options,
114 ..::std::default::Default::default()
115 });
116
117 ::std::option::Option::Some(cfg.freeze())
118 }
119
120 fn runtime_components(
121 &self,
122 _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
123 ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
124 #[allow(unused_mut)]
125 let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("ListDataSets")
126 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
127 ListDataSetsTelemetryInputCaptureInterceptor,
128 ))
129 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
130 ::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default(),
131 ))
132 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
133 ListDataSetsEndpointParamsInterceptor,
134 ))
135 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
136 crate::operation::list_data_sets::ListDataSetsError,
137 >::new())
138 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
139 crate::operation::list_data_sets::ListDataSetsError,
140 >::new())
141 .with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<
142 crate::operation::list_data_sets::ListDataSetsError,
143 >::new());
144
145 ::std::borrow::Cow::Owned(rcb)
146 }
147}
148
149#[derive(Debug)]
150struct ListDataSetsTelemetryInputCaptureInterceptor;
151
152#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
153impl ::aws_smithy_runtime_api::client::interceptors::Intercept for ListDataSetsTelemetryInputCaptureInterceptor {
154 fn name(&self) -> &'static str {
155 "ListDataSetsTelemetryInputCaptureInterceptor"
156 }
157
158 fn read_before_execution(
159 &self,
160 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
161 '_,
162 ::aws_smithy_runtime_api::client::interceptors::context::Input,
163 ::aws_smithy_runtime_api::client::interceptors::context::Output,
164 ::aws_smithy_runtime_api::client::interceptors::context::Error,
165 >,
166 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
167 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
168 let ::std::option::Option::Some(requested) = cfg
170 .load::<::aws_smithy_types::telemetry::RequestedTelemetryAttributes>()
171 .filter(|r| !r.is_empty())
172 else {
173 return ::std::result::Result::Ok(());
174 };
175
176 let ::std::option::Option::Some(input) = context.input().downcast_ref::<ListDataSetsInput>() else {
177 return ::std::result::Result::Ok(());
179 };
180
181 let mut captured = ::aws_smithy_types::telemetry::CapturedTelemetryAttributes::default();
182 if requested.should_capture("applicationId") {
183 if let ::std::option::Option::Some(value) = input.application_id.as_deref() {
184 captured.insert("applicationId", value);
185 }
186 }
187 if requested.should_capture("nextToken") {
188 if let ::std::option::Option::Some(value) = input.next_token.as_deref() {
189 captured.insert("nextToken", value);
190 }
191 }
192 if requested.should_capture("prefix") {
193 if let ::std::option::Option::Some(value) = input.prefix.as_deref() {
194 captured.insert("prefix", value);
195 }
196 }
197 if requested.should_capture("nameFilter") {
198 if let ::std::option::Option::Some(value) = input.name_filter.as_deref() {
199 captured.insert("nameFilter", value);
200 }
201 }
202
203 cfg.interceptor_state().store_put(captured);
204 ::std::result::Result::Ok(())
205 }
206}
207#[derive(Debug)]
208struct ListDataSetsResponseDeserializer;
209impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for ListDataSetsResponseDeserializer {
210 fn deserialize_nonstreaming_with_config(
211 &self,
212 response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
213 _cfg: &::aws_smithy_types::config_bag::ConfigBag,
214 ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
215 let (success, status) = (response.status().is_success(), response.status().as_u16());
216 let headers = response.headers();
217 let body = response.body().bytes().expect("body loaded");
218 #[allow(unused_mut)]
219 let mut force_error = false;
220 ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
221 let parse_result = if !success && status != 200 || force_error {
222 crate::protocol_serde::shape_list_data_sets::de_list_data_sets_http_error(status, headers, body)
223 } else {
224 crate::protocol_serde::shape_list_data_sets::de_list_data_sets_http_response(status, headers, body)
225 };
226 crate::protocol_serde::type_erase_result(parse_result)
227 }
228}
229#[derive(Debug)]
230struct ListDataSetsRequestSerializer;
231impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for ListDataSetsRequestSerializer {
232 #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
233 fn serialize_input(
234 &self,
235 input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
236 _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
237 ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
238 let input = input
239 .downcast::<crate::operation::list_data_sets::ListDataSetsInput>()
240 .expect("correct type");
241 let _header_serialization_settings = _cfg
242 .load::<crate::serialization_settings::HeaderSerializationSettings>()
243 .cloned()
244 .unwrap_or_default();
245 let mut request_builder = {
246 #[allow(clippy::uninlined_format_args)]
247 fn uri_base(
248 _input: &crate::operation::list_data_sets::ListDataSetsInput,
249 output: &mut ::std::string::String,
250 ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
251 use ::std::fmt::Write as _;
252 let input_1 = &_input.application_id;
253 let input_1 = input_1
254 .as_ref()
255 .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("application_id", "cannot be empty or unset"))?;
256 let application_id = ::aws_smithy_http::label::fmt_string(input_1, ::aws_smithy_http::label::EncodingStrategy::Default);
257 if application_id.is_empty() {
258 return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
259 "application_id",
260 "cannot be empty or unset",
261 ));
262 }
263 ::std::write!(output, "/applications/{applicationId}/datasets", applicationId = application_id).expect("formatting should succeed");
264 ::std::result::Result::Ok(())
265 }
266 fn uri_query(
267 _input: &crate::operation::list_data_sets::ListDataSetsInput,
268 mut output: &mut ::std::string::String,
269 ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
270 let mut query = ::aws_smithy_http::query::Writer::new(output);
271 if let ::std::option::Option::Some(inner_2) = &_input.next_token {
272 {
273 query.push_kv("nextToken", &::aws_smithy_http::query::fmt_string(inner_2));
274 }
275 }
276 if let ::std::option::Option::Some(inner_3) = &_input.max_results {
277 {
278 query.push_kv("maxResults", ::aws_smithy_types::primitive::Encoder::from(*inner_3).encode());
279 }
280 }
281 if let ::std::option::Option::Some(inner_4) = &_input.prefix {
282 {
283 query.push_kv("prefix", &::aws_smithy_http::query::fmt_string(inner_4));
284 }
285 }
286 if let ::std::option::Option::Some(inner_5) = &_input.name_filter {
287 {
288 query.push_kv("nameFilter", &::aws_smithy_http::query::fmt_string(inner_5));
289 }
290 }
291 ::std::result::Result::Ok(())
292 }
293 #[allow(clippy::unnecessary_wraps)]
294 fn update_http_builder(
295 input: &crate::operation::list_data_sets::ListDataSetsInput,
296 builder: ::http_1x::request::Builder,
297 ) -> ::std::result::Result<::http_1x::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
298 let mut uri = ::std::string::String::new();
299 uri_base(input, &mut uri)?;
300 uri_query(input, &mut uri)?;
301 ::std::result::Result::Ok(builder.method("GET").uri(uri))
302 }
303 let mut builder = update_http_builder(&input, ::http_1x::request::Builder::new())?;
304 builder
305 };
306 let body = ::aws_smithy_types::body::SdkBody::from("");
307
308 ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
309 }
310}
311#[derive(Debug)]
312struct ListDataSetsEndpointParamsInterceptor;
313
314#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
315impl ::aws_smithy_runtime_api::client::interceptors::Intercept for ListDataSetsEndpointParamsInterceptor {
316 fn name(&self) -> &'static str {
317 "ListDataSetsEndpointParamsInterceptor"
318 }
319
320 fn read_before_execution(
321 &self,
322 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
323 '_,
324 ::aws_smithy_runtime_api::client::interceptors::context::Input,
325 ::aws_smithy_runtime_api::client::interceptors::context::Output,
326 ::aws_smithy_runtime_api::client::interceptors::context::Error,
327 >,
328 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
329 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
330 let _input = context
331 .input()
332 .downcast_ref::<ListDataSetsInput>()
333 .ok_or("failed to downcast to ListDataSetsInput")?;
334
335 let params = crate::config::endpoint::Params::builder()
336 .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
337 .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
338 .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
339 .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
340 .build()
341 .map_err(|err| {
342 ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
343 })?;
344 cfg.interceptor_state()
345 .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
346 ::std::result::Result::Ok(())
347 }
348}
349
350#[non_exhaustive]
355#[derive(::std::fmt::Debug)]
356pub enum ListDataSetsError {
357 AccessDeniedException(crate::types::error::AccessDeniedException),
359 ConflictException(crate::types::error::ConflictException),
361 ExecutionTimeoutException(crate::types::error::ExecutionTimeoutException),
363 InternalServerException(crate::types::error::InternalServerException),
365 ResourceNotFoundException(crate::types::error::ResourceNotFoundException),
367 ServiceUnavailableException(crate::types::error::ServiceUnavailableException),
369 ThrottlingException(crate::types::error::ThrottlingException),
371 ValidationException(crate::types::error::ValidationException),
373 #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
375 variable wildcard pattern and check `.code()`:
376 \
377 `err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
378 \
379 See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-ListDataSetsError) for what information is available for the error.")]
380 Unhandled(crate::error::sealed_unhandled::Unhandled),
381}
382impl ListDataSetsError {
383 pub fn unhandled(
385 err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
386 ) -> Self {
387 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
388 source: err.into(),
389 meta: ::std::default::Default::default(),
390 })
391 }
392
393 pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
395 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
396 source: err.clone().into(),
397 meta: err,
398 })
399 }
400 pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
405 match self {
406 Self::AccessDeniedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
407 Self::ConflictException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
408 Self::ExecutionTimeoutException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
409 Self::InternalServerException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
410 Self::ResourceNotFoundException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
411 Self::ServiceUnavailableException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
412 Self::ThrottlingException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
413 Self::ValidationException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
414 Self::Unhandled(e) => &e.meta,
415 }
416 }
417 pub fn is_access_denied_exception(&self) -> bool {
419 matches!(self, Self::AccessDeniedException(_))
420 }
421 pub fn is_conflict_exception(&self) -> bool {
423 matches!(self, Self::ConflictException(_))
424 }
425 pub fn is_execution_timeout_exception(&self) -> bool {
427 matches!(self, Self::ExecutionTimeoutException(_))
428 }
429 pub fn is_internal_server_exception(&self) -> bool {
431 matches!(self, Self::InternalServerException(_))
432 }
433 pub fn is_resource_not_found_exception(&self) -> bool {
435 matches!(self, Self::ResourceNotFoundException(_))
436 }
437 pub fn is_service_unavailable_exception(&self) -> bool {
439 matches!(self, Self::ServiceUnavailableException(_))
440 }
441 pub fn is_throttling_exception(&self) -> bool {
443 matches!(self, Self::ThrottlingException(_))
444 }
445 pub fn is_validation_exception(&self) -> bool {
447 matches!(self, Self::ValidationException(_))
448 }
449}
450impl ::std::error::Error for ListDataSetsError {
451 fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
452 match self {
453 Self::AccessDeniedException(_inner) => ::std::option::Option::Some(_inner),
454 Self::ConflictException(_inner) => ::std::option::Option::Some(_inner),
455 Self::ExecutionTimeoutException(_inner) => ::std::option::Option::Some(_inner),
456 Self::InternalServerException(_inner) => ::std::option::Option::Some(_inner),
457 Self::ResourceNotFoundException(_inner) => ::std::option::Option::Some(_inner),
458 Self::ServiceUnavailableException(_inner) => ::std::option::Option::Some(_inner),
459 Self::ThrottlingException(_inner) => ::std::option::Option::Some(_inner),
460 Self::ValidationException(_inner) => ::std::option::Option::Some(_inner),
461 Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
462 }
463 }
464}
465impl ::std::fmt::Display for ListDataSetsError {
466 fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
467 match self {
468 Self::AccessDeniedException(_inner) => _inner.fmt(f),
469 Self::ConflictException(_inner) => _inner.fmt(f),
470 Self::ExecutionTimeoutException(_inner) => _inner.fmt(f),
471 Self::InternalServerException(_inner) => _inner.fmt(f),
472 Self::ResourceNotFoundException(_inner) => _inner.fmt(f),
473 Self::ServiceUnavailableException(_inner) => _inner.fmt(f),
474 Self::ThrottlingException(_inner) => _inner.fmt(f),
475 Self::ValidationException(_inner) => _inner.fmt(f),
476 Self::Unhandled(_inner) => {
477 if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
478 write!(f, "unhandled error ({code})")
479 } else {
480 f.write_str("unhandled error")
481 }
482 }
483 }
484 }
485}
486impl ::aws_smithy_types::retry::ProvideErrorKind for ListDataSetsError {
487 fn code(&self) -> ::std::option::Option<&str> {
488 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
489 }
490 fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
491 match self {
492 Self::ExecutionTimeoutException(inner) => ::std::option::Option::Some(inner.retryable_error_kind()),
493 Self::InternalServerException(inner) => ::std::option::Option::Some(inner.retryable_error_kind()),
494 Self::ServiceUnavailableException(inner) => ::std::option::Option::Some(inner.retryable_error_kind()),
495 Self::ThrottlingException(inner) => ::std::option::Option::Some(inner.retryable_error_kind()),
496 _ => ::std::option::Option::None,
497 }
498 }
499}
500impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for ListDataSetsError {
501 fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
502 match self {
503 Self::AccessDeniedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
504 Self::ConflictException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
505 Self::ExecutionTimeoutException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
506 Self::InternalServerException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
507 Self::ResourceNotFoundException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
508 Self::ServiceUnavailableException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
509 Self::ThrottlingException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
510 Self::ValidationException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
511 Self::Unhandled(_inner) => &_inner.meta,
512 }
513 }
514}
515impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for ListDataSetsError {
516 fn create_unhandled_error(
517 source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
518 meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
519 ) -> Self {
520 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
521 source,
522 meta: meta.unwrap_or_default(),
523 })
524 }
525}
526impl ::aws_types::request_id::RequestId for crate::operation::list_data_sets::ListDataSetsError {
527 fn request_id(&self) -> Option<&str> {
528 self.meta().request_id()
529 }
530}
531
532pub use crate::operation::list_data_sets::_list_data_sets_input::ListDataSetsInput;
533
534pub use crate::operation::list_data_sets::_list_data_sets_output::ListDataSetsOutput;
535
536mod _list_data_sets_input;
537
538mod _list_data_sets_output;
539
540pub mod builders;
542
543pub mod paginator;