/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the iotwireless-2020-11-22.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.IoTWireless.Model
{
///
/// This is the response object from the GetNetworkAnalyzerConfiguration operation.
///
public partial class GetNetworkAnalyzerConfigurationResponse : AmazonWebServiceResponse
{
private string _arn;
private string _description;
private List _multicastGroups = new List();
private string _name;
private TraceContent _traceContent;
private List _wirelessDevices = new List();
private List _wirelessGateways = new List();
///
/// Gets and sets the property Arn.
///
/// The Amazon Resource Name of the new resource.
///
///
[AWSProperty(Max=1124)]
public string Arn
{
get { return this._arn; }
set { this._arn = value; }
}
// Check to see if Arn property is set
internal bool IsSetArn()
{
return this._arn != null;
}
///
/// Gets and sets the property Description.
///
[AWSProperty(Max=2048)]
public string Description
{
get { return this._description; }
set { this._description = value; }
}
// Check to see if Description property is set
internal bool IsSetDescription()
{
return this._description != null;
}
///
/// Gets and sets the property MulticastGroups.
///
/// List of multicast group resources that have been added to the network analyzer configuration.
///
///
[AWSProperty(Min=0, Max=10)]
public List MulticastGroups
{
get { return this._multicastGroups; }
set { this._multicastGroups = value; }
}
// Check to see if MulticastGroups property is set
internal bool IsSetMulticastGroups()
{
return this._multicastGroups != null && this._multicastGroups.Count > 0;
}
///
/// Gets and sets the property Name.
///
[AWSProperty(Min=1, Max=1024)]
public string Name
{
get { return this._name; }
set { this._name = value; }
}
// Check to see if Name property is set
internal bool IsSetName()
{
return this._name != null;
}
///
/// Gets and sets the property TraceContent.
///
public TraceContent TraceContent
{
get { return this._traceContent; }
set { this._traceContent = value; }
}
// Check to see if TraceContent property is set
internal bool IsSetTraceContent()
{
return this._traceContent != null;
}
///
/// Gets and sets the property WirelessDevices.
///
/// List of wireless gateway resources that have been added to the network analyzer configuration.
///
///
[AWSProperty(Min=0, Max=250)]
public List WirelessDevices
{
get { return this._wirelessDevices; }
set { this._wirelessDevices = value; }
}
// Check to see if WirelessDevices property is set
internal bool IsSetWirelessDevices()
{
return this._wirelessDevices != null && this._wirelessDevices.Count > 0;
}
///
/// Gets and sets the property WirelessGateways.
///
/// List of wireless gateway resources that have been added to the network analyzer configuration.
///
///
public List WirelessGateways
{
get { return this._wirelessGateways; }
set { this._wirelessGateways = value; }
}
// Check to see if WirelessGateways property is set
internal bool IsSetWirelessGateways()
{
return this._wirelessGateways != null && this._wirelessGateways.Count > 0;
}
}
}