AWS Fundamentals Logo
AWS Fundamentals
AWS::NetworkManager::Site

NetworkManager Site

The AWS::NetworkManager::Site type describes a site.

Properties

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

Filter:
PropertyTypeFlags
GlobalNetworkId
string
RequiredCreate-only
Description
string
Location
Location
Tags
Array<Tag>

Return Values

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

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

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

Resources:
  MyResource:
    Type: AWS::NetworkManager::Site
    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:CreateSitenetworkmanager:GetSitesnetworkmanager:TagResource

read

networkmanager:GetSites

update

networkmanager:GetSitesnetworkmanager:ListTagsForResourcenetworkmanager:TagResourcenetworkmanager:UntagResourcenetworkmanager:UpdateSite

delete

networkmanager:GetSitesnetworkmanager:DeleteSite

list

networkmanager:GetSites

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
Properties8
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