/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace IoTWireless { namespace Model { class GetNetworkAnalyzerConfigurationResult { public: AWS_IOTWIRELESS_API GetNetworkAnalyzerConfigurationResult(); AWS_IOTWIRELESS_API GetNetworkAnalyzerConfigurationResult(const Aws::AmazonWebServiceResult& result); AWS_IOTWIRELESS_API GetNetworkAnalyzerConfigurationResult& operator=(const Aws::AmazonWebServiceResult& result); inline const TraceContent& GetTraceContent() const{ return m_traceContent; } inline void SetTraceContent(const TraceContent& value) { m_traceContent = value; } inline void SetTraceContent(TraceContent&& value) { m_traceContent = std::move(value); } inline GetNetworkAnalyzerConfigurationResult& WithTraceContent(const TraceContent& value) { SetTraceContent(value); return *this;} inline GetNetworkAnalyzerConfigurationResult& WithTraceContent(TraceContent&& value) { SetTraceContent(std::move(value)); return *this;} /** *

List of wireless gateway resources that have been added to the network * analyzer configuration.

*/ inline const Aws::Vector& GetWirelessDevices() const{ return m_wirelessDevices; } /** *

List of wireless gateway resources that have been added to the network * analyzer configuration.

*/ inline void SetWirelessDevices(const Aws::Vector& value) { m_wirelessDevices = value; } /** *

List of wireless gateway resources that have been added to the network * analyzer configuration.

*/ inline void SetWirelessDevices(Aws::Vector&& value) { m_wirelessDevices = std::move(value); } /** *

List of wireless gateway resources that have been added to the network * analyzer configuration.

*/ inline GetNetworkAnalyzerConfigurationResult& WithWirelessDevices(const Aws::Vector& value) { SetWirelessDevices(value); return *this;} /** *

List of wireless gateway resources that have been added to the network * analyzer configuration.

*/ inline GetNetworkAnalyzerConfigurationResult& WithWirelessDevices(Aws::Vector&& value) { SetWirelessDevices(std::move(value)); return *this;} /** *

List of wireless gateway resources that have been added to the network * analyzer configuration.

*/ inline GetNetworkAnalyzerConfigurationResult& AddWirelessDevices(const Aws::String& value) { m_wirelessDevices.push_back(value); return *this; } /** *

List of wireless gateway resources that have been added to the network * analyzer configuration.

*/ inline GetNetworkAnalyzerConfigurationResult& AddWirelessDevices(Aws::String&& value) { m_wirelessDevices.push_back(std::move(value)); return *this; } /** *

List of wireless gateway resources that have been added to the network * analyzer configuration.

*/ inline GetNetworkAnalyzerConfigurationResult& AddWirelessDevices(const char* value) { m_wirelessDevices.push_back(value); return *this; } /** *

List of wireless gateway resources that have been added to the network * analyzer configuration.

*/ inline const Aws::Vector& GetWirelessGateways() const{ return m_wirelessGateways; } /** *

List of wireless gateway resources that have been added to the network * analyzer configuration.

*/ inline void SetWirelessGateways(const Aws::Vector& value) { m_wirelessGateways = value; } /** *

List of wireless gateway resources that have been added to the network * analyzer configuration.

*/ inline void SetWirelessGateways(Aws::Vector&& value) { m_wirelessGateways = std::move(value); } /** *

List of wireless gateway resources that have been added to the network * analyzer configuration.

*/ inline GetNetworkAnalyzerConfigurationResult& WithWirelessGateways(const Aws::Vector& value) { SetWirelessGateways(value); return *this;} /** *

List of wireless gateway resources that have been added to the network * analyzer configuration.

*/ inline GetNetworkAnalyzerConfigurationResult& WithWirelessGateways(Aws::Vector&& value) { SetWirelessGateways(std::move(value)); return *this;} /** *

List of wireless gateway resources that have been added to the network * analyzer configuration.

*/ inline GetNetworkAnalyzerConfigurationResult& AddWirelessGateways(const Aws::String& value) { m_wirelessGateways.push_back(value); return *this; } /** *

List of wireless gateway resources that have been added to the network * analyzer configuration.

*/ inline GetNetworkAnalyzerConfigurationResult& AddWirelessGateways(Aws::String&& value) { m_wirelessGateways.push_back(std::move(value)); return *this; } /** *

List of wireless gateway resources that have been added to the network * analyzer configuration.

*/ inline GetNetworkAnalyzerConfigurationResult& AddWirelessGateways(const char* value) { m_wirelessGateways.push_back(value); return *this; } inline const Aws::String& GetDescription() const{ return m_description; } inline void SetDescription(const Aws::String& value) { m_description = value; } inline void SetDescription(Aws::String&& value) { m_description = std::move(value); } inline void SetDescription(const char* value) { m_description.assign(value); } inline GetNetworkAnalyzerConfigurationResult& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} inline GetNetworkAnalyzerConfigurationResult& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} inline GetNetworkAnalyzerConfigurationResult& WithDescription(const char* value) { SetDescription(value); return *this;} /** *

The Amazon Resource Name of the new resource.

*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *

The Amazon Resource Name of the new resource.

*/ inline void SetArn(const Aws::String& value) { m_arn = value; } /** *

The Amazon Resource Name of the new resource.

*/ inline void SetArn(Aws::String&& value) { m_arn = std::move(value); } /** *

The Amazon Resource Name of the new resource.

*/ inline void SetArn(const char* value) { m_arn.assign(value); } /** *

The Amazon Resource Name of the new resource.

*/ inline GetNetworkAnalyzerConfigurationResult& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *

The Amazon Resource Name of the new resource.

*/ inline GetNetworkAnalyzerConfigurationResult& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *

The Amazon Resource Name of the new resource.

*/ inline GetNetworkAnalyzerConfigurationResult& WithArn(const char* value) { SetArn(value); return *this;} inline const Aws::String& GetName() const{ return m_name; } inline void SetName(const Aws::String& value) { m_name = value; } inline void SetName(Aws::String&& value) { m_name = std::move(value); } inline void SetName(const char* value) { m_name.assign(value); } inline GetNetworkAnalyzerConfigurationResult& WithName(const Aws::String& value) { SetName(value); return *this;} inline GetNetworkAnalyzerConfigurationResult& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} inline GetNetworkAnalyzerConfigurationResult& WithName(const char* value) { SetName(value); return *this;} /** *

List of multicast group resources that have been added to the network * analyzer configuration.

*/ inline const Aws::Vector& GetMulticastGroups() const{ return m_multicastGroups; } /** *

List of multicast group resources that have been added to the network * analyzer configuration.

*/ inline void SetMulticastGroups(const Aws::Vector& value) { m_multicastGroups = value; } /** *

List of multicast group resources that have been added to the network * analyzer configuration.

*/ inline void SetMulticastGroups(Aws::Vector&& value) { m_multicastGroups = std::move(value); } /** *

List of multicast group resources that have been added to the network * analyzer configuration.

*/ inline GetNetworkAnalyzerConfigurationResult& WithMulticastGroups(const Aws::Vector& value) { SetMulticastGroups(value); return *this;} /** *

List of multicast group resources that have been added to the network * analyzer configuration.

*/ inline GetNetworkAnalyzerConfigurationResult& WithMulticastGroups(Aws::Vector&& value) { SetMulticastGroups(std::move(value)); return *this;} /** *

List of multicast group resources that have been added to the network * analyzer configuration.

*/ inline GetNetworkAnalyzerConfigurationResult& AddMulticastGroups(const Aws::String& value) { m_multicastGroups.push_back(value); return *this; } /** *

List of multicast group resources that have been added to the network * analyzer configuration.

*/ inline GetNetworkAnalyzerConfigurationResult& AddMulticastGroups(Aws::String&& value) { m_multicastGroups.push_back(std::move(value)); return *this; } /** *

List of multicast group resources that have been added to the network * analyzer configuration.

*/ inline GetNetworkAnalyzerConfigurationResult& AddMulticastGroups(const char* value) { m_multicastGroups.push_back(value); return *this; } inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetNetworkAnalyzerConfigurationResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetNetworkAnalyzerConfigurationResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetNetworkAnalyzerConfigurationResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: TraceContent m_traceContent; Aws::Vector m_wirelessDevices; Aws::Vector m_wirelessGateways; Aws::String m_description; Aws::String m_arn; Aws::String m_name; Aws::Vector m_multicastGroups; Aws::String m_requestId; }; } // namespace Model } // namespace IoTWireless } // namespace Aws