AWS Fundamentals Logo
AWS Fundamentals
AWS::IoTWireless::WirelessDevice

IoTWireless WirelessDevice

Create and manage wireless gateways, including LoRa gateways.

Properties

9 configurable properties. 2 required. Click a row to see details.

Filter:
PropertyTypeFlags
DestinationName
string
Required
Type
string
Required
Description
string
LastUplinkReceivedAt
string
LoRaWAN
LoRaWANDevice
Name
string
Positioning
string
Tags
Array<Tag>
ThingArn
string

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
ArnstringWireless device arn. Returned after successful create.
IdstringWireless device Id. Returned after successful create.
ThingNamestringThing Arn. If there is a Thing created, this can be returned with a Get call.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::IoTWireless::WirelessDevice

Resources:
  MyResource:
    Type: AWS::IoTWireless::WirelessDevice
    Properties:
      Type: "Sidewalk"
      DestinationName: "my-destinationname"
      Tags:
        - Key: Environment
          Value: Production
      Description: !Ref "AWS::StackName"
      Name: !Ref "AWS::StackName"

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

iotwireless:CreateWirelessDeviceiotwireless:TagResource

read

iotwireless:GetWirelessDeviceiotwireless:ListTagsForResource

update

iotwireless:UpdateWirelessDeviceiotwireless:GetWirelessDeviceiotwireless:AssociateWirelessDeviceWithThingiotwireless:TagResourceiotwireless:UntagResource

delete

iotwireless:DeleteWirelessDeviceiotwireless:DisassociateWirelessDeviceFromThing

list

iotwireless:ListWirelessDevicesiotwireless:ListTagsForResource

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceIoTWireless
Properties12
Required2
TaggingSupported
Primary IDId

Supported Operations

CreateReadUpdateDeleteList

External Links