interface CfnWirelessDeviceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTWireless.Mixins.CfnWirelessDeviceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotwireless/mixins#CfnWirelessDeviceMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.iotwireless.mixins.CfnWirelessDeviceMixinProps |
Python | aws_cdk.mixins_preview.aws_iotwireless.mixins.CfnWirelessDeviceMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_iotwireless » mixins » CfnWirelessDeviceMixinProps |
Properties for CfnWirelessDevicePropsMixin.
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 cfnWirelessDeviceMixinProps: iotwireless_mixins.CfnWirelessDeviceMixinProps = {
description: 'description',
destinationName: 'destinationName',
lastUplinkReceivedAt: 'lastUplinkReceivedAt',
loRaWan: {
abpV10X: {
devAddr: 'devAddr',
sessionKeys: {
appSKey: 'appSKey',
nwkSKey: 'nwkSKey',
},
},
abpV11: {
devAddr: 'devAddr',
sessionKeys: {
appSKey: 'appSKey',
fNwkSIntKey: 'fNwkSIntKey',
nwkSEncKey: 'nwkSEncKey',
sNwkSIntKey: 'sNwkSIntKey',
},
},
devEui: 'devEui',
deviceProfileId: 'deviceProfileId',
fPorts: {
applications: [{
destinationName: 'destinationName',
fPort: 123,
type: 'type',
}],
},
otaaV10X: {
appEui: 'appEui',
appKey: 'appKey',
},
otaaV11: {
appKey: 'appKey',
joinEui: 'joinEui',
nwkKey: 'nwkKey',
},
serviceProfileId: 'serviceProfileId',
},
name: 'name',
positioning: 'positioning',
tags: [{
key: 'key',
value: 'value',
}],
thingArn: 'thingArn',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the new resource. |
| destination | string | The name of the destination to assign to the new wireless device. |
| last | string | The date and time when the most recent uplink was received. |
| lo | IResolvable | Lo | The device configuration information to use to create the wireless device. |
| name? | string | The name of the new resource. |
| positioning? | string | FPort values for the GNSS, Stream, and ClockSync functions of the positioning information. |
| tags? | Cfn[] | The tags are an array of key-value pairs to attach to the specified resource. |
| thing | string | The ARN of the thing to associate with the wireless device. |
| type? | string | The wireless device type. |
description?
Type:
string
(optional)
The description of the new resource.
Maximum length is 2048.
destinationName?
Type:
string
(optional)
The name of the destination to assign to the new wireless device.
Can have only have alphanumeric, - (hyphen) and _ (underscore) characters and it can't have any spaces.
lastUplinkReceivedAt?
Type:
string
(optional)
The date and time when the most recent uplink was received.
loRaWan?
Type:
IResolvable | Lo
(optional)
The device configuration information to use to create the wireless device.
Must be at least one of OtaaV10x, OtaaV11, AbpV11, or AbpV10x.
name?
Type:
string
(optional)
The name of the new resource.
positioning?
Type:
string
(optional)
FPort values for the GNSS, Stream, and ClockSync functions of the positioning information.
tags?
Type:
Cfn[]
(optional)
The tags are an array of key-value pairs to attach to the specified resource.
Tags can have a minimum of 0 and a maximum of 50 items.
thingArn?
Type:
string
(optional)
The ARN of the thing to associate with the wireless device.
type?
Type:
string
(optional)
The wireless device type.

.NET
Go
Java
Python
TypeScript