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 (
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 theWirelessDeviceId
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 theWirelessGatewayId
of the resource to add in the input array.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import 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.
- name
Name of the network analyzer configuration.
- tags
The tags to attach to the specified resource.
Tags are metadata that you can use to manage a resource.
- trace_content
Trace content for your wireless gateway and wireless device resources.
- wireless_devices
Wireless device resources to add to the network analyzer configuration.
Provide the
WirelessDeviceId
of the resource to add in the input array.
- wireless_gateways
Wireless gateway resources to add to the network analyzer configuration.
Provide the
WirelessGatewayId
of the resource to add in the input array.