CfnNetworkAnalyzerConfigurationProps

class aws_cdk.aws_iotwireless.CfnNetworkAnalyzerConfigurationProps(*, name, description=None, tags=None, trace_content=None, wireless_devices=None, wireless_gateways=None)

Bases: object

Properties for defining a CfnNetworkAnalyzerConfiguration.

Parameters:
  • name (str) – Name of the network analyzer configuration.

  • description (Optional[str]) – The description of the resource.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags to attach to the specified resource. Tags are metadata that you can use to manage a resource.

  • trace_content (Optional[Any]) – Trace content for your wireless gateway and wireless device resources.

  • wireless_devices (Optional[Sequence[str]]) – Wireless device resources to add to the network analyzer configuration. Provide the WirelessDeviceId of the resource to add in the input array.

  • wireless_gateways (Optional[Sequence[str]]) – Wireless gateway resources to add to the network analyzer configuration. Provide the WirelessGatewayId of the resource to add in the input array.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-networkanalyzerconfiguration.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_iotwireless as iotwireless

# trace_content: Any

cfn_network_analyzer_configuration_props = iotwireless.CfnNetworkAnalyzerConfigurationProps(
    name="name",

    # the properties below are optional
    description="description",
    tags=[CfnTag(
        key="key",
        value="value"
    )],
    trace_content=trace_content,
    wireless_devices=["wirelessDevices"],
    wireless_gateways=["wirelessGateways"]
)

Attributes

description

The description of the resource.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-networkanalyzerconfiguration.html#cfn-iotwireless-networkanalyzerconfiguration-description

name

Name of the network analyzer configuration.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-networkanalyzerconfiguration.html#cfn-iotwireless-networkanalyzerconfiguration-name

tags

The tags to attach to the specified resource.

Tags are metadata that you can use to manage a resource.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-networkanalyzerconfiguration.html#cfn-iotwireless-networkanalyzerconfiguration-tags

trace_content

Trace content for your wireless gateway and wireless device resources.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-networkanalyzerconfiguration.html#cfn-iotwireless-networkanalyzerconfiguration-tracecontent

wireless_devices

Wireless device resources to add to the network analyzer configuration.

Provide the WirelessDeviceId of the resource to add in the input array.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-networkanalyzerconfiguration.html#cfn-iotwireless-networkanalyzerconfiguration-wirelessdevices

wireless_gateways

Wireless gateway resources to add to the network analyzer configuration.

Provide the WirelessGatewayId of the resource to add in the input array.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-networkanalyzerconfiguration.html#cfn-iotwireless-networkanalyzerconfiguration-wirelessgateways