interface CfnWirelessDeviceImportTaskMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTWireless.Mixins.CfnWirelessDeviceImportTaskMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotwireless/mixins#CfnWirelessDeviceImportTaskMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.iotwireless.mixins.CfnWirelessDeviceImportTaskMixinProps |
Python | aws_cdk.mixins_preview.aws_iotwireless.mixins.CfnWirelessDeviceImportTaskMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_iotwireless » mixins » CfnWirelessDeviceImportTaskMixinProps |
Properties for CfnWirelessDeviceImportTaskPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iotwireless_mixins } from '@aws-cdk/mixins-preview/aws-iotwireless';
const cfnWirelessDeviceImportTaskMixinProps: iotwireless_mixins.CfnWirelessDeviceImportTaskMixinProps = {
destinationName: 'destinationName',
sidewalk: {
deviceCreationFile: 'deviceCreationFile',
deviceCreationFileList: ['deviceCreationFileList'],
role: 'role',
sidewalkManufacturingSn: 'sidewalkManufacturingSn',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | string | 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? | IResolvable | Sidewalk | The Sidewalk-related information of the wireless device import task. |
| tags? | Cfn[] | Adds to or modifies the tags of the given resource. |
destinationName?
Type:
string
(optional)
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?
Type:
IResolvable | Sidewalk
(optional)
The Sidewalk-related information of the wireless device import task.
tags?
Type:
Cfn[]
(optional)
Adds to or modifies the tags of the given resource.
Tags are metadata that you can use to manage a resource.

.NET
Go
Java
Python
TypeScript