aws_sdk_iotwireless/client/
get_network_analyzer_configuration.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`GetNetworkAnalyzerConfiguration`](crate::operation::get_network_analyzer_configuration::builders::GetNetworkAnalyzerConfigurationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`configuration_name(impl Into<String>)`](crate::operation::get_network_analyzer_configuration::builders::GetNetworkAnalyzerConfigurationFluentBuilder::configuration_name) / [`set_configuration_name(Option<String>)`](crate::operation::get_network_analyzer_configuration::builders::GetNetworkAnalyzerConfigurationFluentBuilder::set_configuration_name):<br>required: **true**<br><p>Name of the network analyzer configuration.</p><br>
7    /// - On success, responds with [`GetNetworkAnalyzerConfigurationOutput`](crate::operation::get_network_analyzer_configuration::GetNetworkAnalyzerConfigurationOutput) with field(s):
8    ///   - [`trace_content(Option<TraceContent>)`](crate::operation::get_network_analyzer_configuration::GetNetworkAnalyzerConfigurationOutput::trace_content): <p>Trace content for your wireless devices, gateways, and multicast groups.</p>
9    ///   - [`wireless_devices(Option<Vec::<String>>)`](crate::operation::get_network_analyzer_configuration::GetNetworkAnalyzerConfigurationOutput::wireless_devices): <p>List of wireless device resources that have been added to the network analyzer configuration.</p>
10    ///   - [`wireless_gateways(Option<Vec::<String>>)`](crate::operation::get_network_analyzer_configuration::GetNetworkAnalyzerConfigurationOutput::wireless_gateways): <p>List of wireless gateway resources that have been added to the network analyzer configuration.</p>
11    ///   - [`description(Option<String>)`](crate::operation::get_network_analyzer_configuration::GetNetworkAnalyzerConfigurationOutput::description): <p>The description of the new resource.</p>
12    ///   - [`arn(Option<String>)`](crate::operation::get_network_analyzer_configuration::GetNetworkAnalyzerConfigurationOutput::arn): <p>The Amazon Resource Name of the new resource.</p>
13    ///   - [`name(Option<String>)`](crate::operation::get_network_analyzer_configuration::GetNetworkAnalyzerConfigurationOutput::name): <p>Name of the network analyzer configuration.</p>
14    ///   - [`multicast_groups(Option<Vec::<String>>)`](crate::operation::get_network_analyzer_configuration::GetNetworkAnalyzerConfigurationOutput::multicast_groups): <p>List of multicast group resources that have been added to the network analyzer configuration.</p>
15    /// - On failure, responds with [`SdkError<GetNetworkAnalyzerConfigurationError>`](crate::operation::get_network_analyzer_configuration::GetNetworkAnalyzerConfigurationError)
16    pub fn get_network_analyzer_configuration(
17        &self,
18    ) -> crate::operation::get_network_analyzer_configuration::builders::GetNetworkAnalyzerConfigurationFluentBuilder {
19        crate::operation::get_network_analyzer_configuration::builders::GetNetworkAnalyzerConfigurationFluentBuilder::new(self.handle.clone())
20    }
21}