CfnWirelessDeviceImportTaskMixinProps

class aws_cdk.mixins_preview.aws_iotwireless.mixins.CfnWirelessDeviceImportTaskMixinProps(*, destination_name=None, sidewalk=None, tags=None)

Bases: object

Properties 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:

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

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.

See:

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

sidewalk

The Sidewalk-related information of the wireless device import task.

See:

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

tags

Adds to or modifies the tags of the given resource.

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

See:

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