1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetMulticastGroup`](crate::operation::get_multicast_group::builders::GetMulticastGroupFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`id(impl Into<String>)`](crate::operation::get_multicast_group::builders::GetMulticastGroupFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::get_multicast_group::builders::GetMulticastGroupFluentBuilder::set_id):<br>required: **true**<br><p>The ID of the multicast group.</p><br>
    /// - On success, responds with [`GetMulticastGroupOutput`](crate::operation::get_multicast_group::GetMulticastGroupOutput) with field(s):
    ///   - [`arn(Option<String>)`](crate::operation::get_multicast_group::GetMulticastGroupOutput::arn): <p>The arn of the multicast group.</p>
    ///   - [`id(Option<String>)`](crate::operation::get_multicast_group::GetMulticastGroupOutput::id): <p>The ID of the multicast group.</p>
    ///   - [`name(Option<String>)`](crate::operation::get_multicast_group::GetMulticastGroupOutput::name): <p>The name of the multicast group.</p>
    ///   - [`description(Option<String>)`](crate::operation::get_multicast_group::GetMulticastGroupOutput::description): <p>The description of the new resource.</p>
    ///   - [`status(Option<String>)`](crate::operation::get_multicast_group::GetMulticastGroupOutput::status): <p>The status of the multicast group.</p>
    ///   - [`lo_ra_wan(Option<LoRaWanMulticastGet>)`](crate::operation::get_multicast_group::GetMulticastGroupOutput::lo_ra_wan): <p>The LoRaWAN information that is to be returned from getting multicast group information.</p>
    ///   - [`created_at(Option<DateTime>)`](crate::operation::get_multicast_group::GetMulticastGroupOutput::created_at): <p>Created at timestamp for the resource.</p>
    /// - On failure, responds with [`SdkError<GetMulticastGroupError>`](crate::operation::get_multicast_group::GetMulticastGroupError)
    pub fn get_multicast_group(&self) -> crate::operation::get_multicast_group::builders::GetMulticastGroupFluentBuilder {
        crate::operation::get_multicast_group::builders::GetMulticastGroupFluentBuilder::new(self.handle.clone())
    }
}