CfnWirelessDeviceImportTaskMixinProps
- class aws_cdk.mixins_preview.aws_iotwireless.mixins.CfnWirelessDeviceImportTaskMixinProps(*, destination_name=None, sidewalk=None, tags=None)
Bases:
objectProperties for CfnWirelessDeviceImportTaskPropsMixin.
- Parameters:
destination_name (
Optional[str]) – The name of the destination that describes the IoT rule to route messages from the Sidewalk devices in the import task to other applications.sidewalk (
Union[IResolvable,SidewalkProperty,Dict[str,Any],None]) – The Sidewalk-related information of the wireless device import task.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – Adds to or modifies the tags of the given resource. Tags are metadata that you can use to manage a resource.
- 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 cfn_wireless_device_import_task_mixin_props = iotwireless_mixins.CfnWirelessDeviceImportTaskMixinProps( destination_name="destinationName", sidewalk=iotwireless_mixins.CfnWirelessDeviceImportTaskPropsMixin.SidewalkProperty( device_creation_file="deviceCreationFile", device_creation_file_list=["deviceCreationFileList"], role="role", sidewalk_manufacturing_sn="sidewalkManufacturingSn" ), tags=[CfnTag( key="key", value="value" )] )
Attributes
- destination_name
The name of the destination that describes the IoT rule to route messages from the Sidewalk devices in the import task to other applications.
- sidewalk
The Sidewalk-related information of the wireless device import task.
- tags
Adds to or modifies the tags of the given resource.
Tags are metadata that you can use to manage a resource.