interface CfnNetworkAnalyzerConfigurationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTWireless.Mixins.CfnNetworkAnalyzerConfigurationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotwireless/mixins#CfnNetworkAnalyzerConfigurationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.iotwireless.mixins.CfnNetworkAnalyzerConfigurationMixinProps |
Python | aws_cdk.mixins_preview.aws_iotwireless.mixins.CfnNetworkAnalyzerConfigurationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_iotwireless » mixins » CfnNetworkAnalyzerConfigurationMixinProps |
Properties for CfnNetworkAnalyzerConfigurationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iotwireless_mixins } from '@aws-cdk/mixins-preview/aws-iotwireless';
declare const traceContent: any;
const cfnNetworkAnalyzerConfigurationMixinProps: iotwireless_mixins.CfnNetworkAnalyzerConfigurationMixinProps = {
description: 'description',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
traceContent: traceContent,
wirelessDevices: ['wirelessDevices'],
wirelessGateways: ['wirelessGateways'],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the resource. |
| name? | string | Name of the network analyzer configuration. |
| 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. |
description?
Type:
string
(optional)
The description of the resource.
name?
Type:
string
(optional)
Name of the network analyzer configuration.
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.

.NET
Go
Java
Python
TypeScript