AWS Fundamentals Logo
AWS Fundamentals
AWS::MediaLive::Node

MediaLive Node

Definition of AWS::MediaLive::Node Resource Type

Properties

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

Filter:
PropertyTypeFlags
ClusterId
string
RequiredCreate-only
Name
string
NodeInterfaceMappings
Array<NodeInterfaceMapping>
Create-only
Role
string
SdiSourceMappings
Array<SdiSourceMapping>
Tags
Array<Tag>

Return Values

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

AttributeTypeDescription
ArnstringThe ARN of the Node. It is automatically assigned when the Node is created.
ChannelPlacementGroupsArray<string>An array of IDs. Each ID is one ChannelPlacementGroup that is associated with this Node.
ConnectionStatestring-
IdstringThe unique ID of the Node. Unique in the Cluster. The ID is the resource-id portion of the ARN.
InstanceArnstringThe ARN of the EC2 instance hosting the Node.
Statestring-

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::MediaLive::Node

Resources:
  MyResource:
    Type: AWS::MediaLive::Node
    Properties:
      ClusterId: "my-clusterid"
      Tags:
        - Key: Environment
          Value: Production
      Name: !Ref "AWS::StackName"

Required IAM Permissions

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

create

medialive:CreateNodemedialive:UpdateNodemedialive:DescribeNodemedialive:CreateTags

read

medialive:DescribeNodemedialive:ListTagsForResource

update

medialive:UpdateNodemedialive:DescribeNodemedialive:CreateTagsmedialive:DeleteTagsmedialive:ListTagsForResource

delete

medialive:DeleteNodemedialive:DescribeNode

list

medialive:ListNodes

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

ServiceMediaLive
Properties12
Required1
TaggingSupported
Primary IDArn

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

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

ClusterIdNodeInterfaceMappings

External Links