/*
* 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
{
///
/// Container for the parameters to the CreateNetworkAnalyzerConfiguration operation.
/// Creates a new network analyzer configuration.
///
public partial class CreateNetworkAnalyzerConfigurationRequest : AmazonIoTWirelessRequest
{
private string _clientRequestToken;
private string _description;
private List _multicastGroups = new List();
private string _name;
private List _tags = new List();
private TraceContent _traceContent;
private List _wirelessDevices = new List();
private List _wirelessGateways = new List();
///
/// Gets and sets the property ClientRequestToken.
///
[AWSProperty(Min=1, Max=64)]
public string ClientRequestToken
{
get { return this._clientRequestToken; }
set { this._clientRequestToken = value; }
}
// Check to see if ClientRequestToken property is set
internal bool IsSetClientRequestToken()
{
return this._clientRequestToken != 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.
///
/// Multicast Group resources to add to the network analyzer configruation. Provide the
/// MulticastGroupId
of the resource to add in the input array.
///
///
[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(Required=true, 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 Tags.
///
[AWSProperty(Min=0, Max=200)]
public List Tags
{
get { return this._tags; }
set { this._tags = value; }
}
// Check to see if Tags property is set
internal bool IsSetTags()
{
return this._tags != null && this._tags.Count > 0;
}
///
/// 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.
///
/// Wireless device resources to add to the network analyzer configuration. Provide the
/// WirelessDeviceId
of the resource to add in the input array.
///
///
[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.
///
/// Wireless gateway resources to add to the network analyzer configuration. Provide the
/// WirelessGatewayId
of the resource to add in the input array.
///
///
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;
}
}
}