CfnNetworkAnalyzerConfigurationPropsMixin
- class aws_cdk.mixins_preview.aws_iotwireless.mixins.CfnNetworkAnalyzerConfigurationPropsMixin(props, *, strategy=None)
Bases:
MixinNetwork analyzer configuration.
- See:
- CloudformationResource:
AWS::IoTWireless::NetworkAnalyzerConfiguration
- Mixin:
true
- 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 import mixins from aws_cdk.mixins_preview.aws_iotwireless import mixins as iotwireless_mixins # trace_content: Any cfn_network_analyzer_configuration_props_mixin = iotwireless_mixins.CfnNetworkAnalyzerConfigurationPropsMixin(iotwireless_mixins.CfnNetworkAnalyzerConfigurationMixinProps( description="description", name="name", tags=[CfnTag( key="key", value="value" )], trace_content=trace_content, wireless_devices=["wirelessDevices"], wireless_gateways=["wirelessGateways"] ), strategy=mixins.PropertyMergeStrategy.OVERRIDE )
Create a mixin to apply properties to
AWS::IoTWireless::NetworkAnalyzerConfiguration.- Parameters:
props (
Union[CfnNetworkAnalyzerConfigurationMixinProps,Dict[str,Any]]) – L1 properties to apply.strategy (
Optional[PropertyMergeStrategy]) – (experimental) Strategy for merging nested properties. Default: - PropertyMergeStrategy.MERGE
Methods
- apply_to(construct)
Apply the mixin properties to the construct.
- Parameters:
construct (
IConstruct)- Return type:
- supports(construct)
Check if this mixin supports the given construct.
- Parameters:
construct (
IConstruct)- Return type:
bool
Attributes
- CFN_PROPERTY_KEYS = ['description', 'name', 'tags', 'traceContent', 'wirelessDevices', 'wirelessGateways']
Static Methods
- classmethod is_mixin(x)
(experimental) Checks if
xis a Mixin.- Parameters:
x (
Any) – Any object.- Return type:
bool- Returns:
true if
xis an object created from a class which extendsMixin.- Stability:
experimental
TraceContentProperty
- class CfnNetworkAnalyzerConfigurationPropsMixin.TraceContentProperty(*, log_level=None, wireless_device_frame_info=None)
Bases:
objectTrace content for your wireless gateway and wireless device resources.
- Parameters:
log_level (
Optional[str]) – The log level for a log message. The log levels can be disabled, or set toERRORto display less verbose logs containing only error information, or toINFOfor more detailed logswireless_device_frame_info (
Optional[str]) –FrameInfoof your wireless device resources for the trace content. Use FrameInfo to debug the communication between your LoRaWAN end devices and the network server.
- 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_property = iotwireless_mixins.CfnNetworkAnalyzerConfigurationPropsMixin.TraceContentProperty( log_level="logLevel", wireless_device_frame_info="wirelessDeviceFrameInfo" )
Attributes
- log_level
The log level for a log message.
The log levels can be disabled, or set to
ERRORto display less verbose logs containing only error information, or toINFOfor more detailed logs
- wireless_device_frame_info
FrameInfoof your wireless device resources for the trace content.Use FrameInfo to debug the communication between your LoRaWAN end devices and the network server.