aws_sdk_iotwireless/operation/
disassociate_wireless_device_from_multicast_group.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2/// Orchestration and serialization glue logic for `DisassociateWirelessDeviceFromMulticastGroup`.
3#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct DisassociateWirelessDeviceFromMulticastGroup;
6impl DisassociateWirelessDeviceFromMulticastGroup {
7    /// Creates a new `DisassociateWirelessDeviceFromMulticastGroup`
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::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        // Create a parent span for the entire operation. Includes a random, internal-only,
61        // seven-digit ID for the operation orchestration so that it can be correlated in the logs.
62        .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::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default())
136                .with_interceptor(DisassociateWirelessDeviceFromMulticastGroupEndpointParamsInterceptor)
137                .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
138                    crate::operation::disassociate_wireless_device_from_multicast_group::DisassociateWirelessDeviceFromMulticastGroupError,
139                >::new())
140                .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
141                    crate::operation::disassociate_wireless_device_from_multicast_group::DisassociateWirelessDeviceFromMulticastGroupError,
142                >::new())
143                .with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<
144                    crate::operation::disassociate_wireless_device_from_multicast_group::DisassociateWirelessDeviceFromMulticastGroupError,
145                >::new());
146
147        ::std::borrow::Cow::Owned(rcb)
148    }
149}
150
151#[derive(Debug)]
152struct DisassociateWirelessDeviceFromMulticastGroupResponseDeserializer;
153impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for DisassociateWirelessDeviceFromMulticastGroupResponseDeserializer {
154    fn deserialize_nonstreaming(
155        &self,
156        response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
157    ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
158        let (success, status) = (response.status().is_success(), response.status().as_u16());
159        let headers = response.headers();
160        let body = response.body().bytes().expect("body loaded");
161        #[allow(unused_mut)]
162        let mut force_error = false;
163        ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
164        let parse_result = if !success && status != 204 || force_error {
165            crate::protocol_serde::shape_disassociate_wireless_device_from_multicast_group::de_disassociate_wireless_device_from_multicast_group_http_error(status, headers, body)
166        } else {
167            crate::protocol_serde::shape_disassociate_wireless_device_from_multicast_group::de_disassociate_wireless_device_from_multicast_group_http_response(status, headers, body)
168        };
169        crate::protocol_serde::type_erase_result(parse_result)
170    }
171}
172#[derive(Debug)]
173struct DisassociateWirelessDeviceFromMulticastGroupRequestSerializer;
174impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for DisassociateWirelessDeviceFromMulticastGroupRequestSerializer {
175    #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
176    fn serialize_input(
177        &self,
178        input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
179        _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
180    ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
181        let input = input
182            .downcast::<crate::operation::disassociate_wireless_device_from_multicast_group::DisassociateWirelessDeviceFromMulticastGroupInput>()
183            .expect("correct type");
184        let _header_serialization_settings = _cfg
185            .load::<crate::serialization_settings::HeaderSerializationSettings>()
186            .cloned()
187            .unwrap_or_default();
188        let mut request_builder = {
189            fn uri_base(
190                _input: &crate::operation::disassociate_wireless_device_from_multicast_group::DisassociateWirelessDeviceFromMulticastGroupInput,
191                output: &mut ::std::string::String,
192            ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
193                use ::std::fmt::Write as _;
194                let input_1 = &_input.id;
195                let input_1 = input_1
196                    .as_ref()
197                    .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("id", "cannot be empty or unset"))?;
198                let id = ::aws_smithy_http::label::fmt_string(input_1, ::aws_smithy_http::label::EncodingStrategy::Default);
199                if id.is_empty() {
200                    return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
201                        "id",
202                        "cannot be empty or unset",
203                    ));
204                }
205                let input_2 = &_input.wireless_device_id;
206                let input_2 = input_2.as_ref().ok_or_else(|| {
207                    ::aws_smithy_types::error::operation::BuildError::missing_field("wireless_device_id", "cannot be empty or unset")
208                })?;
209                let wireless_device_id = ::aws_smithy_http::label::fmt_string(input_2, ::aws_smithy_http::label::EncodingStrategy::Default);
210                if wireless_device_id.is_empty() {
211                    return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
212                        "wireless_device_id",
213                        "cannot be empty or unset",
214                    ));
215                }
216                ::std::write!(
217                    output,
218                    "/multicast-groups/{Id}/wireless-devices/{WirelessDeviceId}",
219                    Id = id,
220                    WirelessDeviceId = wireless_device_id
221                )
222                .expect("formatting should succeed");
223                ::std::result::Result::Ok(())
224            }
225            #[allow(clippy::unnecessary_wraps)]
226            fn update_http_builder(
227                input: &crate::operation::disassociate_wireless_device_from_multicast_group::DisassociateWirelessDeviceFromMulticastGroupInput,
228                builder: ::http::request::Builder,
229            ) -> ::std::result::Result<::http::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
230                let mut uri = ::std::string::String::new();
231                uri_base(input, &mut uri)?;
232                ::std::result::Result::Ok(builder.method("DELETE").uri(uri))
233            }
234            let mut builder = update_http_builder(&input, ::http::request::Builder::new())?;
235            builder
236        };
237        let body = ::aws_smithy_types::body::SdkBody::from("");
238
239        ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
240    }
241}
242#[derive(Debug)]
243struct DisassociateWirelessDeviceFromMulticastGroupEndpointParamsInterceptor;
244
245impl ::aws_smithy_runtime_api::client::interceptors::Intercept for DisassociateWirelessDeviceFromMulticastGroupEndpointParamsInterceptor {
246    fn name(&self) -> &'static str {
247        "DisassociateWirelessDeviceFromMulticastGroupEndpointParamsInterceptor"
248    }
249
250    fn read_before_execution(
251        &self,
252        context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
253            '_,
254            ::aws_smithy_runtime_api::client::interceptors::context::Input,
255            ::aws_smithy_runtime_api::client::interceptors::context::Output,
256            ::aws_smithy_runtime_api::client::interceptors::context::Error,
257        >,
258        cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
259    ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
260        let _input = context
261            .input()
262            .downcast_ref::<DisassociateWirelessDeviceFromMulticastGroupInput>()
263            .ok_or("failed to downcast to DisassociateWirelessDeviceFromMulticastGroupInput")?;
264
265        let params = crate::config::endpoint::Params::builder()
266            .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
267            .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
268            .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
269            .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
270            .build()
271            .map_err(|err| {
272                ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
273            })?;
274        cfg.interceptor_state()
275            .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
276        ::std::result::Result::Ok(())
277    }
278}
279
280// The get_* functions below are generated from JMESPath expressions in the
281// operationContextParams trait. They target the operation's input shape.
282
283/// Error type for the `DisassociateWirelessDeviceFromMulticastGroupError` operation.
284#[non_exhaustive]
285#[derive(::std::fmt::Debug)]
286pub enum DisassociateWirelessDeviceFromMulticastGroupError {
287    /// <p>User does not have permission to perform this action.</p>
288    AccessDeniedException(crate::types::error::AccessDeniedException),
289    /// <p>An unexpected error occurred while processing a request.</p>
290    InternalServerException(crate::types::error::InternalServerException),
291    /// <p>Resource does not exist.</p>
292    ResourceNotFoundException(crate::types::error::ResourceNotFoundException),
293    /// <p>The request was denied because it exceeded the allowed API request rate.</p>
294    ThrottlingException(crate::types::error::ThrottlingException),
295    /// <p>The input did not meet the specified constraints.</p>
296    ValidationException(crate::types::error::ValidationException),
297    /// An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
298    #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
299    variable wildcard pattern and check `.code()`:
300     \
301    &nbsp;&nbsp;&nbsp;`err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
302     \
303    See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-DisassociateWirelessDeviceFromMulticastGroupError) for what information is available for the error.")]
304    Unhandled(crate::error::sealed_unhandled::Unhandled),
305}
306impl DisassociateWirelessDeviceFromMulticastGroupError {
307    /// Creates the `DisassociateWirelessDeviceFromMulticastGroupError::Unhandled` variant from any error type.
308    pub fn unhandled(
309        err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
310    ) -> Self {
311        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
312            source: err.into(),
313            meta: ::std::default::Default::default(),
314        })
315    }
316
317    /// Creates the `DisassociateWirelessDeviceFromMulticastGroupError::Unhandled` variant from an [`ErrorMetadata`](::aws_smithy_types::error::ErrorMetadata).
318    pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
319        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
320            source: err.clone().into(),
321            meta: err,
322        })
323    }
324    ///
325    /// Returns error metadata, which includes the error code, message,
326    /// request ID, and potentially additional information.
327    ///
328    pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
329        match self {
330            Self::AccessDeniedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
331            Self::InternalServerException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
332            Self::ResourceNotFoundException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
333            Self::ThrottlingException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
334            Self::ValidationException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
335            Self::Unhandled(e) => &e.meta,
336        }
337    }
338    /// Returns `true` if the error kind is `DisassociateWirelessDeviceFromMulticastGroupError::AccessDeniedException`.
339    pub fn is_access_denied_exception(&self) -> bool {
340        matches!(self, Self::AccessDeniedException(_))
341    }
342    /// Returns `true` if the error kind is `DisassociateWirelessDeviceFromMulticastGroupError::InternalServerException`.
343    pub fn is_internal_server_exception(&self) -> bool {
344        matches!(self, Self::InternalServerException(_))
345    }
346    /// Returns `true` if the error kind is `DisassociateWirelessDeviceFromMulticastGroupError::ResourceNotFoundException`.
347    pub fn is_resource_not_found_exception(&self) -> bool {
348        matches!(self, Self::ResourceNotFoundException(_))
349    }
350    /// Returns `true` if the error kind is `DisassociateWirelessDeviceFromMulticastGroupError::ThrottlingException`.
351    pub fn is_throttling_exception(&self) -> bool {
352        matches!(self, Self::ThrottlingException(_))
353    }
354    /// Returns `true` if the error kind is `DisassociateWirelessDeviceFromMulticastGroupError::ValidationException`.
355    pub fn is_validation_exception(&self) -> bool {
356        matches!(self, Self::ValidationException(_))
357    }
358}
359impl ::std::error::Error for DisassociateWirelessDeviceFromMulticastGroupError {
360    fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
361        match self {
362            Self::AccessDeniedException(_inner) => ::std::option::Option::Some(_inner),
363            Self::InternalServerException(_inner) => ::std::option::Option::Some(_inner),
364            Self::ResourceNotFoundException(_inner) => ::std::option::Option::Some(_inner),
365            Self::ThrottlingException(_inner) => ::std::option::Option::Some(_inner),
366            Self::ValidationException(_inner) => ::std::option::Option::Some(_inner),
367            Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
368        }
369    }
370}
371impl ::std::fmt::Display for DisassociateWirelessDeviceFromMulticastGroupError {
372    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
373        match self {
374            Self::AccessDeniedException(_inner) => _inner.fmt(f),
375            Self::InternalServerException(_inner) => _inner.fmt(f),
376            Self::ResourceNotFoundException(_inner) => _inner.fmt(f),
377            Self::ThrottlingException(_inner) => _inner.fmt(f),
378            Self::ValidationException(_inner) => _inner.fmt(f),
379            Self::Unhandled(_inner) => {
380                if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
381                    write!(f, "unhandled error ({code})")
382                } else {
383                    f.write_str("unhandled error")
384                }
385            }
386        }
387    }
388}
389impl ::aws_smithy_types::retry::ProvideErrorKind for DisassociateWirelessDeviceFromMulticastGroupError {
390    fn code(&self) -> ::std::option::Option<&str> {
391        ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
392    }
393    fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
394        ::std::option::Option::None
395    }
396}
397impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for DisassociateWirelessDeviceFromMulticastGroupError {
398    fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
399        match self {
400            Self::AccessDeniedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
401            Self::InternalServerException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
402            Self::ResourceNotFoundException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
403            Self::ThrottlingException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
404            Self::ValidationException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
405            Self::Unhandled(_inner) => &_inner.meta,
406        }
407    }
408}
409impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for DisassociateWirelessDeviceFromMulticastGroupError {
410    fn create_unhandled_error(
411        source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
412        meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
413    ) -> Self {
414        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
415            source,
416            meta: meta.unwrap_or_default(),
417        })
418    }
419}
420impl ::aws_types::request_id::RequestId
421    for crate::operation::disassociate_wireless_device_from_multicast_group::DisassociateWirelessDeviceFromMulticastGroupError
422{
423    fn request_id(&self) -> Option<&str> {
424        self.meta().request_id()
425    }
426}
427
428pub use crate::operation::disassociate_wireless_device_from_multicast_group::_disassociate_wireless_device_from_multicast_group_output::DisassociateWirelessDeviceFromMulticastGroupOutput;
429
430pub use crate::operation::disassociate_wireless_device_from_multicast_group::_disassociate_wireless_device_from_multicast_group_input::DisassociateWirelessDeviceFromMulticastGroupInput;
431
432mod _disassociate_wireless_device_from_multicast_group_input;
433
434mod _disassociate_wireless_device_from_multicast_group_output;
435
436/// Builders
437pub mod builders;