AWS Fundamentals Logo
AWS Fundamentals
AWS::NetworkManager::Link

NetworkManager Link

The AWS::NetworkManager::Link type describes a link.

Properties

7 configurable properties. 3 required. Click a row to see details.

Filter:
PropertyTypeFlags
Bandwidth
Bandwidth
Required
GlobalNetworkId
string
RequiredCreate-only
SiteId
string
RequiredCreate-only
Description
string
Provider
string
Tags
Array<Tag>
Type
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.
LinkArnstringThe Amazon Resource Name (ARN) of the link.
LinkIdstringThe ID of the link.
StatestringThe state of the link.

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::Link

Resources:
  MyResource:
    Type: AWS::NetworkManager::Link
    Properties:
      GlobalNetworkId: "my-globalnetworkid"
      SiteId: "my-siteid"
      Bandwidth: "my-bandwidth"
      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:CreateLinknetworkmanager:GetLinksnetworkmanager:TagResource

read

networkmanager:GetLinks

update

networkmanager:ListTagsForResourcenetworkmanager:TagResourcenetworkmanager:GetLinksnetworkmanager:UntagResourcenetworkmanager:UpdateLink

delete

networkmanager:GetLinksnetworkmanager:DeleteLink

list

networkmanager:GetLinks

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
Properties11
Required3
TaggingSupported
Primary IDGlobalNetworkId

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

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

GlobalNetworkIdSiteId

External Links