AWS Fundamentals Logo
AWS Fundamentals
AWS::NetworkManager::Device

NetworkManager Device

The AWS::NetworkManager::Device type describes a device.

Properties

10 configurable properties. 1 required. Click a row to see details.

Filter:
PropertyTypeFlags
GlobalNetworkId
string
RequiredCreate-only
AWSLocation
AWSLocation
Description
string
Location
Location
Model
string
SerialNumber
string
SiteId
string
Tags
Array<Tag>
Type
string
Vendor
string

Return Values

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

AttributeTypeDescription
CreatedAtstringThe date and time that the device was created.
DeviceArnstringThe Amazon Resource Name (ARN) of the device.
DeviceIdstringThe ID of the device.
StatestringThe state of the device.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::NetworkManager::Device

Resources:
  MyResource:
    Type: AWS::NetworkManager::Device
    Properties:
      GlobalNetworkId: "my-globalnetworkid"
      Tags:
        - Key: Environment
          Value: Production
      Description: !Ref "AWS::StackName"

Required IAM Permissions

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

create

networkmanager:CreateDevicenetworkmanager:GetDevicesnetworkmanager:TagResource

read

networkmanager:GetDevices

update

networkmanager:UpdateDevicenetworkmanager:ListTagsForResourcenetworkmanager:GetDevicesnetworkmanager:TagResourcenetworkmanager:UntagResource

delete

networkmanager:GetDevicesnetworkmanager:DeleteDevice

list

networkmanager:GetDevices

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

ServiceNetworkManager
Properties14
Required1
TaggingSupported
Primary IDGlobalNetworkId

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

GlobalNetworkId

External Links