aws_sdk_iotwireless/client/
update_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 [`UpdateNetworkAnalyzerConfiguration`](crate::operation::update_network_analyzer_configuration::builders::UpdateNetworkAnalyzerConfigurationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`configuration_name(impl Into<String>)`](crate::operation::update_network_analyzer_configuration::builders::UpdateNetworkAnalyzerConfigurationFluentBuilder::configuration_name) / [`set_configuration_name(Option<String>)`](crate::operation::update_network_analyzer_configuration::builders::UpdateNetworkAnalyzerConfigurationFluentBuilder::set_configuration_name):<br>required: **true**<br><p>Name of the network analyzer configuration.</p><br>
7    ///   - [`trace_content(TraceContent)`](crate::operation::update_network_analyzer_configuration::builders::UpdateNetworkAnalyzerConfigurationFluentBuilder::trace_content) / [`set_trace_content(Option<TraceContent>)`](crate::operation::update_network_analyzer_configuration::builders::UpdateNetworkAnalyzerConfigurationFluentBuilder::set_trace_content):<br>required: **false**<br><p>Trace content for your wireless devices, gateways, and multicast groups.</p><br>
8    ///   - [`wireless_devices_to_add(impl Into<String>)`](crate::operation::update_network_analyzer_configuration::builders::UpdateNetworkAnalyzerConfigurationFluentBuilder::wireless_devices_to_add) / [`set_wireless_devices_to_add(Option<Vec::<String>>)`](crate::operation::update_network_analyzer_configuration::builders::UpdateNetworkAnalyzerConfigurationFluentBuilder::set_wireless_devices_to_add):<br>required: **false**<br><p>Wireless device resources to add to the network analyzer configuration. Provide the <code>WirelessDeviceId</code> of the resource to add in the input array.</p><br>
9    ///   - [`wireless_devices_to_remove(impl Into<String>)`](crate::operation::update_network_analyzer_configuration::builders::UpdateNetworkAnalyzerConfigurationFluentBuilder::wireless_devices_to_remove) / [`set_wireless_devices_to_remove(Option<Vec::<String>>)`](crate::operation::update_network_analyzer_configuration::builders::UpdateNetworkAnalyzerConfigurationFluentBuilder::set_wireless_devices_to_remove):<br>required: **false**<br><p>Wireless device resources to remove from the network analyzer configuration. Provide the <code>WirelessDeviceId</code> of the resources to remove in the input array.</p><br>
10    ///   - [`wireless_gateways_to_add(impl Into<String>)`](crate::operation::update_network_analyzer_configuration::builders::UpdateNetworkAnalyzerConfigurationFluentBuilder::wireless_gateways_to_add) / [`set_wireless_gateways_to_add(Option<Vec::<String>>)`](crate::operation::update_network_analyzer_configuration::builders::UpdateNetworkAnalyzerConfigurationFluentBuilder::set_wireless_gateways_to_add):<br>required: **false**<br><p>Wireless gateway resources to add to the network analyzer configuration. Provide the <code>WirelessGatewayId</code> of the resource to add in the input array.</p><br>
11    ///   - [`wireless_gateways_to_remove(impl Into<String>)`](crate::operation::update_network_analyzer_configuration::builders::UpdateNetworkAnalyzerConfigurationFluentBuilder::wireless_gateways_to_remove) / [`set_wireless_gateways_to_remove(Option<Vec::<String>>)`](crate::operation::update_network_analyzer_configuration::builders::UpdateNetworkAnalyzerConfigurationFluentBuilder::set_wireless_gateways_to_remove):<br>required: **false**<br><p>Wireless gateway resources to remove from the network analyzer configuration. Provide the <code>WirelessGatewayId</code> of the resources to remove in the input array.</p><br>
12    ///   - [`description(impl Into<String>)`](crate::operation::update_network_analyzer_configuration::builders::UpdateNetworkAnalyzerConfigurationFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::update_network_analyzer_configuration::builders::UpdateNetworkAnalyzerConfigurationFluentBuilder::set_description):<br>required: **false**<br><p>The description of the new resource.</p><br>
13    ///   - [`multicast_groups_to_add(impl Into<String>)`](crate::operation::update_network_analyzer_configuration::builders::UpdateNetworkAnalyzerConfigurationFluentBuilder::multicast_groups_to_add) / [`set_multicast_groups_to_add(Option<Vec::<String>>)`](crate::operation::update_network_analyzer_configuration::builders::UpdateNetworkAnalyzerConfigurationFluentBuilder::set_multicast_groups_to_add):<br>required: **false**<br><p>Multicast group resources to add to the network analyzer configuration. Provide the <code>MulticastGroupId</code> of the resource to add in the input array.</p><br>
14    ///   - [`multicast_groups_to_remove(impl Into<String>)`](crate::operation::update_network_analyzer_configuration::builders::UpdateNetworkAnalyzerConfigurationFluentBuilder::multicast_groups_to_remove) / [`set_multicast_groups_to_remove(Option<Vec::<String>>)`](crate::operation::update_network_analyzer_configuration::builders::UpdateNetworkAnalyzerConfigurationFluentBuilder::set_multicast_groups_to_remove):<br>required: **false**<br><p>Multicast group resources to remove from the network analyzer configuration. Provide the <code>MulticastGroupId</code> of the resources to remove in the input array.</p><br>
15    /// - On success, responds with [`UpdateNetworkAnalyzerConfigurationOutput`](crate::operation::update_network_analyzer_configuration::UpdateNetworkAnalyzerConfigurationOutput)
16    /// - On failure, responds with [`SdkError<UpdateNetworkAnalyzerConfigurationError>`](crate::operation::update_network_analyzer_configuration::UpdateNetworkAnalyzerConfigurationError)
17    pub fn update_network_analyzer_configuration(
18        &self,
19    ) -> crate::operation::update_network_analyzer_configuration::builders::UpdateNetworkAnalyzerConfigurationFluentBuilder {
20        crate::operation::update_network_analyzer_configuration::builders::UpdateNetworkAnalyzerConfigurationFluentBuilder::new(self.handle.clone())
21    }
22}