interface CfnNetworkAnalyzerConfigurationProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.IoTWireless.CfnNetworkAnalyzerConfigurationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiotwireless#CfnNetworkAnalyzerConfigurationProps |
Java | software.amazon.awscdk.services.iotwireless.CfnNetworkAnalyzerConfigurationProps |
Python | aws_cdk.aws_iotwireless.CfnNetworkAnalyzerConfigurationProps |
TypeScript | aws-cdk-lib » aws_iotwireless » CfnNetworkAnalyzerConfigurationProps |
Properties for defining a CfnNetworkAnalyzerConfiguration
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iotwireless as iotwireless } from 'aws-cdk-lib';
declare const traceContent: any;
const cfnNetworkAnalyzerConfigurationProps: iotwireless.CfnNetworkAnalyzerConfigurationProps = {
name: 'name',
// the properties below are optional
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
traceContent: traceContent,
wirelessDevices: ['wirelessDevices'],
wirelessGateways: ['wirelessGateways'],
};
Properties
Name | Type | Description |
---|---|---|
name | string | Name of the network analyzer configuration. |
description? | string | The description of the resource. |
tags? | Cfn [] | The tags to attach to the specified resource. |
trace | any | Trace content for your wireless gateway and wireless device resources. |
wireless | string[] | Wireless device resources to add to the network analyzer configuration. |
wireless | string[] | Wireless gateway resources to add to the network analyzer configuration. |
name
Type:
string
Name of the network analyzer configuration.
description?
Type:
string
(optional)
The description of the resource.
tags?
Type:
Cfn
[]
(optional)
The tags to attach to the specified resource.
Tags are metadata that you can use to manage a resource.
traceContent?
Type:
any
(optional)
Trace content for your wireless gateway and wireless device resources.
wirelessDevices?
Type:
string[]
(optional)
Wireless device resources to add to the network analyzer configuration.
Provide the WirelessDeviceId
of the resource to add in the input array.
wirelessGateways?
Type:
string[]
(optional)
Wireless gateway resources to add to the network analyzer configuration.
Provide the WirelessGatewayId
of the resource to add in the input array.