Interface ICfnNetworkAnalyzerConfigurationProps
Properties for defining a CfnNetworkAnalyzerConfiguration
.
Namespace: Amazon.CDK.AWS.IoTWireless
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnNetworkAnalyzerConfigurationProps
Syntax (vb)
Public Interface ICfnNetworkAnalyzerConfigurationProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoTWireless;
var traceContent;
var cfnNetworkAnalyzerConfigurationProps = new CfnNetworkAnalyzerConfigurationProps {
Name = "name",
// the properties below are optional
Description = "description",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} },
TraceContent = traceContent,
WirelessDevices = new [] { "wirelessDevices" },
WirelessGateways = new [] { "wirelessGateways" }
};
Synopsis
Properties
Description | The description of the resource. |
Name | Name of the network analyzer configuration. |
Tags | The tags to attach to the specified resource. |
Trace |
Trace content for your wireless gateway and wireless device resources. |
Wireless |
Wireless device resources to add to the network analyzer configuration. |
Wireless |
Wireless gateway resources to add to the network analyzer configuration. |
Properties
Description
The description of the resource.
virtual string Description { get; }
Property Value
System.
Remarks
Name
Name of the network analyzer configuration.
string Name { get; }
Property Value
System.
Remarks
Tags
The tags to attach to the specified resource.
virtual ICfnTag[] Tags { get; }
Property Value
ICfn
Remarks
Tags are metadata that you can use to manage a resource.
TraceContent
Trace content for your wireless gateway and wireless device resources.
virtual object TraceContent { get; }
Property Value
System.
Remarks
WirelessDevices
Wireless device resources to add to the network analyzer configuration.
virtual string[] WirelessDevices { get; }
Property Value
System.
Remarks
Provide the WirelessDeviceId
of the resource to add in the input array.
WirelessGateways
Wireless gateway resources to add to the network analyzer configuration.
virtual string[] WirelessGateways { get; }
Property Value
System.
Remarks
Provide the WirelessGatewayId
of the resource to add in the input array.