aws-cdk-lib.aws_iotwireless.CfnWirelessGatewayProps

interface CfnWirelessGatewayProps

LanguageType name
.NETAmazon.CDK.AWS.IoTWireless.CfnWirelessGatewayProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiotwireless#CfnWirelessGatewayProps
Javasoftware.amazon.awscdk.services.iotwireless.CfnWirelessGatewayProps
Pythonaws_cdk.aws_iotwireless.CfnWirelessGatewayProps
TypeScript aws-cdk-lib » 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 { aws_iotwireless as iotwireless } from 'aws-cdk-lib';
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

NameTypeDescription
loRaWanIResolvable | LoRaWANGatewayPropertyThe gateway configuration information to use to create the wireless gateway.
description?stringThe description of the new resource.
lastUplinkReceivedAt?stringThe date and time when the most recent uplink was received.
name?stringThe name of the new resource.
tags?CfnTag[]The tags are an array of key-value pairs to attach to the specified resource.
thingArn?stringThe ARN of the thing to associate with the wireless gateway.
thingName?stringThe name of the thing associated with the wireless gateway.

loRaWan

Type: IResolvable | LoRaWANGatewayProperty

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: CfnTag[] (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.