interface CfnWirelessGatewayMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTWireless.Mixins.CfnWirelessGatewayMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotwireless/mixins#CfnWirelessGatewayMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.iotwireless.mixins.CfnWirelessGatewayMixinProps |
Python | aws_cdk.mixins_preview.aws_iotwireless.mixins.CfnWirelessGatewayMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_iotwireless » mixins » CfnWirelessGatewayMixinProps |
Properties for CfnWirelessGatewayPropsMixin.
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 cfnWirelessGatewayMixinProps: iotwireless_mixins.CfnWirelessGatewayMixinProps = {
description: 'description',
lastUplinkReceivedAt: 'lastUplinkReceivedAt',
loRaWan: {
gatewayEui: 'gatewayEui',
rfRegion: 'rfRegion',
},
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
thingArn: 'thingArn',
thingName: 'thingName',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the new resource. |
| last | string | The date and time when the most recent uplink was received. |
| lo | IResolvable | Lo | The gateway configuration information to use to create the wireless gateway. |
| 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. |
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.
loRaWan?
Type:
IResolvable | Lo
(optional)
The gateway configuration information to use to create the wireless gateway.
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.

.NET
Go
Java
Python
TypeScript