CfnWirelessDeviceImportTaskProps

class aws_cdk.aws_iotwireless.CfnWirelessDeviceImportTaskProps(*, destination_name, sidewalk, tags=None)

Bases: object

Properties for defining a CfnWirelessDeviceImportTask.

Parameters:
  • destination_name (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]]) – 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 import aws_iotwireless as iotwireless

cfn_wireless_device_import_task_props = iotwireless.CfnWirelessDeviceImportTaskProps(
    destination_name="destinationName",
    sidewalk=iotwireless.CfnWirelessDeviceImportTask.SidewalkProperty(
        device_creation_file="deviceCreationFile",
        device_creation_file_list=["deviceCreationFileList"],
        role="role",
        sidewalk_manufacturing_sn="sidewalkManufacturingSn"
    ),

    # the properties below are optional
    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