aws_sdk_iotwireless/operation/
disassociate_wireless_device_from_multicast_group.rs1#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct DisassociateWirelessDeviceFromMulticastGroup;
6impl DisassociateWirelessDeviceFromMulticastGroup {
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::disassociate_wireless_device_from_multicast_group::DisassociateWirelessDeviceFromMulticastGroupInput,
14 ) -> ::std::result::Result<
15 crate::operation::disassociate_wireless_device_from_multicast_group::DisassociateWirelessDeviceFromMulticastGroupOutput,
16 ::aws_smithy_runtime_api::client::result::SdkError<
17 crate::operation::disassociate_wireless_device_from_multicast_group::DisassociateWirelessDeviceFromMulticastGroupError,
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::disassociate_wireless_device_from_multicast_group::DisassociateWirelessDeviceFromMulticastGroupError>().expect("correct error type")
27 })
28 };
29 let context = Self::orchestrate_with_stop_point(runtime_plugins, input, ::aws_smithy_runtime::client::orchestrator::StopPoint::None)
30 .await
31 .map_err(map_err)?;
32 let output = context.finalize().map_err(map_err)?;
33 ::std::result::Result::Ok(
34 output
35 .downcast::<crate::operation::disassociate_wireless_device_from_multicast_group::DisassociateWirelessDeviceFromMulticastGroupOutput>()
36 .expect("correct output type"),
37 )
38 }
39
40 pub(crate) async fn orchestrate_with_stop_point(
41 runtime_plugins: &::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
42 input: crate::operation::disassociate_wireless_device_from_multicast_group::DisassociateWirelessDeviceFromMulticastGroupInput,
43 stop_point: ::aws_smithy_runtime::client::orchestrator::StopPoint,
44 ) -> ::std::result::Result<
45 ::aws_smithy_runtime_api::client::interceptors::context::InterceptorContext,
46 ::aws_smithy_runtime_api::client::result::SdkError<
47 ::aws_smithy_runtime_api::client::interceptors::context::Error,
48 ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
49 >,
50 > {
51 let input = ::aws_smithy_runtime_api::client::interceptors::context::Input::erase(input);
52 use ::tracing::Instrument;
53 ::aws_smithy_runtime::client::orchestrator::invoke_with_stop_point(
54 "IoT Wireless",
55 "DisassociateWirelessDeviceFromMulticastGroup",
56 input,
57 runtime_plugins,
58 stop_point,
59 )
60 .instrument(::tracing::debug_span!(
63 "IoT Wireless.DisassociateWirelessDeviceFromMulticastGroup",
64 "rpc.service" = "IoT Wireless",
65 "rpc.method" = "DisassociateWirelessDeviceFromMulticastGroup",
66 "sdk_invocation_id" = ::fastrand::u32(1_000_000..10_000_000),
67 "rpc.system" = "aws-api",
68 ))
69 .await
70 }
71
72 pub(crate) fn operation_runtime_plugins(
73 client_runtime_plugins: ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
74 client_config: &crate::config::Config,
75 config_override: ::std::option::Option<crate::config::Builder>,
76 ) -> ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins {
77 let mut runtime_plugins = client_runtime_plugins.with_operation_plugin(Self::new());
78
79 if let ::std::option::Option::Some(config_override) = config_override {
80 for plugin in config_override.runtime_plugins.iter().cloned() {
81 runtime_plugins = runtime_plugins.with_operation_plugin(plugin);
82 }
83 runtime_plugins = runtime_plugins.with_operation_plugin(crate::config::ConfigOverrideRuntimePlugin::new(
84 config_override,
85 client_config.config.clone(),
86 &client_config.runtime_components,
87 ));
88 }
89 runtime_plugins
90 }
91}
92impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for DisassociateWirelessDeviceFromMulticastGroup {
93 fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
94 let mut cfg = ::aws_smithy_types::config_bag::Layer::new("DisassociateWirelessDeviceFromMulticastGroup");
95
96 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
97 DisassociateWirelessDeviceFromMulticastGroupRequestSerializer,
98 ));
99 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
100 DisassociateWirelessDeviceFromMulticastGroupResponseDeserializer,
101 ));
102
103 cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
104 crate::config::auth::Params::builder()
105 .operation_name("DisassociateWirelessDeviceFromMulticastGroup")
106 .build()
107 .expect("required fields set"),
108 ));
109
110 cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new(
111 "DisassociateWirelessDeviceFromMulticastGroup",
112 "IoT Wireless",
113 ));
114 let mut signing_options = ::aws_runtime::auth::SigningOptions::default();
115 signing_options.double_uri_encode = true;
116 signing_options.content_sha256_header = false;
117 signing_options.normalize_uri_path = true;
118 signing_options.payload_override = None;
119
120 cfg.store_put(::aws_runtime::auth::SigV4OperationSigningConfig {
121 signing_options,
122 ..::std::default::Default::default()
123 });
124
125 ::std::option::Option::Some(cfg.freeze())
126 }
127
128 fn runtime_components(
129 &self,
130 _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
131 ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
132 #[allow(unused_mut)]
133 let mut rcb =
134 ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("DisassociateWirelessDeviceFromMulticastGroup")
135 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
136 DisassociateWirelessDeviceFromMulticastGroupTelemetryInputCaptureInterceptor,
137 ))
138 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
139 ::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default(),
140 ))
141 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
142 DisassociateWirelessDeviceFromMulticastGroupEndpointParamsInterceptor,
143 ))
144 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
145 crate::operation::disassociate_wireless_device_from_multicast_group::DisassociateWirelessDeviceFromMulticastGroupError,
146 >::new())
147 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
148 crate::operation::disassociate_wireless_device_from_multicast_group::DisassociateWirelessDeviceFromMulticastGroupError,
149 >::new())
150 .with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<
151 crate::operation::disassociate_wireless_device_from_multicast_group::DisassociateWirelessDeviceFromMulticastGroupError,
152 >::new());
153
154 ::std::borrow::Cow::Owned(rcb)
155 }
156}
157
158#[derive(Debug)]
159struct DisassociateWirelessDeviceFromMulticastGroupTelemetryInputCaptureInterceptor;
160
161#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
162impl ::aws_smithy_runtime_api::client::interceptors::Intercept for DisassociateWirelessDeviceFromMulticastGroupTelemetryInputCaptureInterceptor {
163 fn name(&self) -> &'static str {
164 "DisassociateWirelessDeviceFromMulticastGroupTelemetryInputCaptureInterceptor"
165 }
166
167 fn read_before_execution(
168 &self,
169 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
170 '_,
171 ::aws_smithy_runtime_api::client::interceptors::context::Input,
172 ::aws_smithy_runtime_api::client::interceptors::context::Output,
173 ::aws_smithy_runtime_api::client::interceptors::context::Error,
174 >,
175 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
176 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
177 let ::std::option::Option::Some(requested) = cfg
179 .load::<::aws_smithy_types::telemetry::RequestedTelemetryAttributes>()
180 .filter(|r| !r.is_empty())
181 else {
182 return ::std::result::Result::Ok(());
183 };
184
185 let ::std::option::Option::Some(input) = context.input().downcast_ref::<DisassociateWirelessDeviceFromMulticastGroupInput>() else {
186 return ::std::result::Result::Ok(());
188 };
189
190 let mut captured = ::aws_smithy_types::telemetry::CapturedTelemetryAttributes::default();
191 if requested.should_capture("Id") {
192 if let ::std::option::Option::Some(value) = input.id.as_deref() {
193 captured.insert("Id", value);
194 }
195 }
196 if requested.should_capture("WirelessDeviceId") {
197 if let ::std::option::Option::Some(value) = input.wireless_device_id.as_deref() {
198 captured.insert("WirelessDeviceId", value);
199 }
200 }
201
202 cfg.interceptor_state().store_put(captured);
203 ::std::result::Result::Ok(())
204 }
205}
206#[derive(Debug)]
207struct DisassociateWirelessDeviceFromMulticastGroupResponseDeserializer;
208impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for DisassociateWirelessDeviceFromMulticastGroupResponseDeserializer {
209 fn deserialize_nonstreaming_with_config(
210 &self,
211 response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
212 _cfg: &::aws_smithy_types::config_bag::ConfigBag,
213 ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
214 let (success, status) = (response.status().is_success(), response.status().as_u16());
215 let headers = response.headers();
216 let body = response.body().bytes().expect("body loaded");
217 #[allow(unused_mut)]
218 let mut force_error = false;
219 ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
220 let parse_result = if !success && status != 204 || force_error {
221 crate::protocol_serde::shape_disassociate_wireless_device_from_multicast_group::de_disassociate_wireless_device_from_multicast_group_http_error(status, headers, body)
222 } else {
223 crate::protocol_serde::shape_disassociate_wireless_device_from_multicast_group::de_disassociate_wireless_device_from_multicast_group_http_response(status, headers, body)
224 };
225 crate::protocol_serde::type_erase_result(parse_result)
226 }
227}
228#[derive(Debug)]
229struct DisassociateWirelessDeviceFromMulticastGroupRequestSerializer;
230impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for DisassociateWirelessDeviceFromMulticastGroupRequestSerializer {
231 #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
232 fn serialize_input(
233 &self,
234 input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
235 _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
236 ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
237 let input = input
238 .downcast::<crate::operation::disassociate_wireless_device_from_multicast_group::DisassociateWirelessDeviceFromMulticastGroupInput>()
239 .expect("correct type");
240 let _header_serialization_settings = _cfg
241 .load::<crate::serialization_settings::HeaderSerializationSettings>()
242 .cloned()
243 .unwrap_or_default();
244 let mut request_builder = {
245 #[allow(clippy::uninlined_format_args)]
246 fn uri_base(
247 _input: &crate::operation::disassociate_wireless_device_from_multicast_group::DisassociateWirelessDeviceFromMulticastGroupInput,
248 output: &mut ::std::string::String,
249 ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
250 use ::std::fmt::Write as _;
251 let input_1 = &_input.id;
252 let input_1 = input_1
253 .as_ref()
254 .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("id", "cannot be empty or unset"))?;
255 let id = ::aws_smithy_http::label::fmt_string(input_1, ::aws_smithy_http::label::EncodingStrategy::Default);
256 if id.is_empty() {
257 return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
258 "id",
259 "cannot be empty or unset",
260 ));
261 }
262 let input_2 = &_input.wireless_device_id;
263 let input_2 = input_2.as_ref().ok_or_else(|| {
264 ::aws_smithy_types::error::operation::BuildError::missing_field("wireless_device_id", "cannot be empty or unset")
265 })?;
266 let wireless_device_id = ::aws_smithy_http::label::fmt_string(input_2, ::aws_smithy_http::label::EncodingStrategy::Default);
267 if wireless_device_id.is_empty() {
268 return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
269 "wireless_device_id",
270 "cannot be empty or unset",
271 ));
272 }
273 ::std::write!(
274 output,
275 "/multicast-groups/{Id}/wireless-devices/{WirelessDeviceId}",
276 Id = id,
277 WirelessDeviceId = wireless_device_id
278 )
279 .expect("formatting should succeed");
280 ::std::result::Result::Ok(())
281 }
282 #[allow(clippy::unnecessary_wraps)]
283 fn update_http_builder(
284 input: &crate::operation::disassociate_wireless_device_from_multicast_group::DisassociateWirelessDeviceFromMulticastGroupInput,
285 builder: ::http_1x::request::Builder,
286 ) -> ::std::result::Result<::http_1x::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
287 let mut uri = ::std::string::String::new();
288 uri_base(input, &mut uri)?;
289 ::std::result::Result::Ok(builder.method("DELETE").uri(uri))
290 }
291 let mut builder = update_http_builder(&input, ::http_1x::request::Builder::new())?;
292 builder
293 };
294 let body = ::aws_smithy_types::body::SdkBody::from("");
295
296 ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
297 }
298}
299#[derive(Debug)]
300struct DisassociateWirelessDeviceFromMulticastGroupEndpointParamsInterceptor;
301
302#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
303impl ::aws_smithy_runtime_api::client::interceptors::Intercept for DisassociateWirelessDeviceFromMulticastGroupEndpointParamsInterceptor {
304 fn name(&self) -> &'static str {
305 "DisassociateWirelessDeviceFromMulticastGroupEndpointParamsInterceptor"
306 }
307
308 fn read_before_execution(
309 &self,
310 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
311 '_,
312 ::aws_smithy_runtime_api::client::interceptors::context::Input,
313 ::aws_smithy_runtime_api::client::interceptors::context::Output,
314 ::aws_smithy_runtime_api::client::interceptors::context::Error,
315 >,
316 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
317 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
318 let _input = context
319 .input()
320 .downcast_ref::<DisassociateWirelessDeviceFromMulticastGroupInput>()
321 .ok_or("failed to downcast to DisassociateWirelessDeviceFromMulticastGroupInput")?;
322
323 let params = crate::config::endpoint::Params::builder()
324 .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
325 .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
326 .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
327 .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
328 .build()
329 .map_err(|err| {
330 ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
331 })?;
332 cfg.interceptor_state()
333 .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
334 ::std::result::Result::Ok(())
335 }
336}
337
338#[non_exhaustive]
343#[derive(::std::fmt::Debug)]
344pub enum DisassociateWirelessDeviceFromMulticastGroupError {
345 AccessDeniedException(crate::types::error::AccessDeniedException),
347 InternalServerException(crate::types::error::InternalServerException),
349 ResourceNotFoundException(crate::types::error::ResourceNotFoundException),
351 ThrottlingException(crate::types::error::ThrottlingException),
353 ValidationException(crate::types::error::ValidationException),
355 #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
357 variable wildcard pattern and check `.code()`:
358 \
359 `err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
360 \
361 See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-DisassociateWirelessDeviceFromMulticastGroupError) for what information is available for the error.")]
362 Unhandled(crate::error::sealed_unhandled::Unhandled),
363}
364impl DisassociateWirelessDeviceFromMulticastGroupError {
365 pub fn unhandled(
367 err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
368 ) -> Self {
369 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
370 source: err.into(),
371 meta: ::std::default::Default::default(),
372 })
373 }
374
375 pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
377 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
378 source: err.clone().into(),
379 meta: err,
380 })
381 }
382 pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
387 match self {
388 Self::AccessDeniedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
389 Self::InternalServerException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
390 Self::ResourceNotFoundException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
391 Self::ThrottlingException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
392 Self::ValidationException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
393 Self::Unhandled(e) => &e.meta,
394 }
395 }
396 pub fn is_access_denied_exception(&self) -> bool {
398 matches!(self, Self::AccessDeniedException(_))
399 }
400 pub fn is_internal_server_exception(&self) -> bool {
402 matches!(self, Self::InternalServerException(_))
403 }
404 pub fn is_resource_not_found_exception(&self) -> bool {
406 matches!(self, Self::ResourceNotFoundException(_))
407 }
408 pub fn is_throttling_exception(&self) -> bool {
410 matches!(self, Self::ThrottlingException(_))
411 }
412 pub fn is_validation_exception(&self) -> bool {
414 matches!(self, Self::ValidationException(_))
415 }
416}
417impl ::std::error::Error for DisassociateWirelessDeviceFromMulticastGroupError {
418 fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
419 match self {
420 Self::AccessDeniedException(_inner) => ::std::option::Option::Some(_inner),
421 Self::InternalServerException(_inner) => ::std::option::Option::Some(_inner),
422 Self::ResourceNotFoundException(_inner) => ::std::option::Option::Some(_inner),
423 Self::ThrottlingException(_inner) => ::std::option::Option::Some(_inner),
424 Self::ValidationException(_inner) => ::std::option::Option::Some(_inner),
425 Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
426 }
427 }
428}
429impl ::std::fmt::Display for DisassociateWirelessDeviceFromMulticastGroupError {
430 fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
431 match self {
432 Self::AccessDeniedException(_inner) => _inner.fmt(f),
433 Self::InternalServerException(_inner) => _inner.fmt(f),
434 Self::ResourceNotFoundException(_inner) => _inner.fmt(f),
435 Self::ThrottlingException(_inner) => _inner.fmt(f),
436 Self::ValidationException(_inner) => _inner.fmt(f),
437 Self::Unhandled(_inner) => {
438 if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
439 write!(f, "unhandled error ({code})")
440 } else {
441 f.write_str("unhandled error")
442 }
443 }
444 }
445 }
446}
447impl ::aws_smithy_types::retry::ProvideErrorKind for DisassociateWirelessDeviceFromMulticastGroupError {
448 fn code(&self) -> ::std::option::Option<&str> {
449 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
450 }
451 fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
452 ::std::option::Option::None
453 }
454}
455impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for DisassociateWirelessDeviceFromMulticastGroupError {
456 fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
457 match self {
458 Self::AccessDeniedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
459 Self::InternalServerException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
460 Self::ResourceNotFoundException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
461 Self::ThrottlingException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
462 Self::ValidationException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
463 Self::Unhandled(_inner) => &_inner.meta,
464 }
465 }
466}
467impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for DisassociateWirelessDeviceFromMulticastGroupError {
468 fn create_unhandled_error(
469 source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
470 meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
471 ) -> Self {
472 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
473 source,
474 meta: meta.unwrap_or_default(),
475 })
476 }
477}
478impl ::aws_types::request_id::RequestId
479 for crate::operation::disassociate_wireless_device_from_multicast_group::DisassociateWirelessDeviceFromMulticastGroupError
480{
481 fn request_id(&self) -> Option<&str> {
482 self.meta().request_id()
483 }
484}
485
486pub use crate::operation::disassociate_wireless_device_from_multicast_group::_disassociate_wireless_device_from_multicast_group_input::DisassociateWirelessDeviceFromMulticastGroupInput;
487
488pub use crate::operation::disassociate_wireless_device_from_multicast_group::_disassociate_wireless_device_from_multicast_group_output::DisassociateWirelessDeviceFromMulticastGroupOutput;
489
490mod _disassociate_wireless_device_from_multicast_group_input;
491
492mod _disassociate_wireless_device_from_multicast_group_output;
493
494pub mod builders;