aws_sdk_iotwireless/client/get_network_analyzer_configuration.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`GetNetworkAnalyzerConfiguration`](crate::operation::get_network_analyzer_configuration::builders::GetNetworkAnalyzerConfigurationFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`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>
/// - On success, responds with [`GetNetworkAnalyzerConfigurationOutput`](crate::operation::get_network_analyzer_configuration::GetNetworkAnalyzerConfigurationOutput) with field(s):
/// - [`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>
/// - [`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>
/// - [`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>
/// - [`description(Option<String>)`](crate::operation::get_network_analyzer_configuration::GetNetworkAnalyzerConfigurationOutput::description): <p>The description of the new resource.</p>
/// - [`arn(Option<String>)`](crate::operation::get_network_analyzer_configuration::GetNetworkAnalyzerConfigurationOutput::arn): <p>The Amazon Resource Name of the new resource.</p>
/// - [`name(Option<String>)`](crate::operation::get_network_analyzer_configuration::GetNetworkAnalyzerConfigurationOutput::name): <p>Name of the network analyzer configuration.</p>
/// - [`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>
/// - On failure, responds with [`SdkError<GetNetworkAnalyzerConfigurationError>`](crate::operation::get_network_analyzer_configuration::GetNetworkAnalyzerConfigurationError)
pub fn get_network_analyzer_configuration(
&self,
) -> crate::operation::get_network_analyzer_configuration::builders::GetNetworkAnalyzerConfigurationFluentBuilder {
crate::operation::get_network_analyzer_configuration::builders::GetNetworkAnalyzerConfigurationFluentBuilder::new(self.handle.clone())
}
}