interface CfnWirelessGatewayProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.IoTWireless.CfnWirelessGatewayProps |
![]() | software.amazon.awscdk.services.iotwireless.CfnWirelessGatewayProps |
![]() | aws_cdk.aws_iotwireless.CfnWirelessGatewayProps |
![]() | @aws-cdk/aws-iotwireless » CfnWirelessGatewayProps |
Properties for defining a CfnWirelessGateway
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as iotwireless from '@aws-cdk/aws-iotwireless';
const cfnWirelessGatewayProps: iotwireless.CfnWirelessGatewayProps = {
loRaWan: {
gatewayEui: 'gatewayEui',
rfRegion: 'rfRegion',
},
// the properties below are optional
description: 'description',
lastUplinkReceivedAt: 'lastUplinkReceivedAt',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
thingArn: 'thingArn',
thingName: 'thingName',
};
Properties
Name | Type | Description |
---|---|---|
lo | IResolvable | Lo | The gateway configuration information to use to create the wireless gateway. |
description? | string | The description of the new resource. |
last | string | The date and time when the most recent uplink was received. |
name? | string | The name of the new resource. |
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 gateway. |
thing | string | The name of the thing associated with the wireless gateway. |
loRaWan
Type:
IResolvable
|
Lo
The gateway configuration information to use to create the wireless gateway.
description?
Type:
string
(optional)
The description of the new resource.
The maximum length is 2048 characters.
lastUplinkReceivedAt?
Type:
string
(optional)
The date and time when the most recent uplink was received.
name?
Type:
string
(optional)
The name of the new resource.
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 gateway.
thingName?
Type:
string
(optional)
The name of the thing associated with the wireless gateway.
The value is empty if a thing isn't associated with the gateway.