aws-cdk-lib.aws_iotwireless.CfnNetworkAnalyzerConfigurationProps

interface CfnNetworkAnalyzerConfigurationProps

LanguageType name
.NETAmazon.CDK.AWS.IoTWireless.CfnNetworkAnalyzerConfigurationProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiotwireless#CfnNetworkAnalyzerConfigurationProps
Javasoftware.amazon.awscdk.services.iotwireless.CfnNetworkAnalyzerConfigurationProps
Pythonaws_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

NameTypeDescription
namestringName of the network analyzer configuration.
description?stringThe description of the resource.
tags?CfnTag[]The tags to attach to the specified resource.
traceContent?anyTrace content for your wireless gateway and wireless device resources.
wirelessDevices?string[]Wireless device resources to add to the network analyzer configuration.
wirelessGateways?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: CfnTag[] (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.