CfnNetworkAnalyzerConfigurationMixinProps
- class aws_cdk.mixins_preview.aws_iotwireless.mixins.CfnNetworkAnalyzerConfigurationMixinProps(*, description=None, name=None, tags=None, trace_content=None, wireless_devices=None, wireless_gateways=None)
Bases:
objectProperties for CfnNetworkAnalyzerConfigurationPropsMixin.
- Parameters:
description (
Optional[str]) – The description of the resource.name (
Optional[str]) – Name of the network analyzer configuration.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 theWirelessDeviceIdof the resource to add in the input array.wireless_gateways (
Optional[Sequence[str]]) – Wireless gateway resources to add to the network analyzer configuration. Provide theWirelessGatewayIdof 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.mixins_preview.aws_iotwireless import mixins as iotwireless_mixins # trace_content: Any cfn_network_analyzer_configuration_mixin_props = iotwireless_mixins.CfnNetworkAnalyzerConfigurationMixinProps( description="description", name="name", 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
WirelessDeviceIdof the resource to add in the input array.
- wireless_gateways
Wireless gateway resources to add to the network analyzer configuration.
Provide the
WirelessGatewayIdof the resource to add in the input array.