AWS Security ChangesHomeSearch

AWS AWSCloudFormation documentation change

Service: AWSCloudFormation · 2026-05-13 · Documentation low

File: AWSCloudFormation/latest/TemplateReference/aws-resource-medialive-input.md

Summary

Added usage example for MEDIACONNECT_ROUTER input type and updated RouterSettings description. The example demonstrates creating an input with automatic encryption and redundant destinations.

Security assessment

The example includes encryption configuration (AUTOMATIC) which promotes secure practices, but there's no evidence of addressing a specific vulnerability. The change primarily improves documentation clarity and provides implementation guidance for security features.

Diff

diff --git a/AWSCloudFormation/latest/TemplateReference/aws-resource-medialive-input.md b/AWSCloudFormation/latest/TemplateReference/aws-resource-medialive-input.md
index 61386e211..b7e7814bf 100644
--- a//AWSCloudFormation/latest/TemplateReference/aws-resource-medialive-input.md
+++ b//AWSCloudFormation/latest/TemplateReference/aws-resource-medialive-input.md
@@ -5 +5 @@
-SyntaxPropertiesReturn values
+SyntaxPropertiesReturn valuesExamples
@@ -173 +173 @@ _Required_ : No
-Property description not available.
+Settings that apply only if the input is a MEDIACONNECT_ROUTER type of input. Specifies the configuration for MediaConnect router-based content delivery.
@@ -295,0 +296,41 @@ For a pull input, the source or sources for the input. The sources are the URLs
+## Examples
+
+### Create a MEDIACONNECT_ROUTER input
+
+This example creates a standard (redundant) MediaLive input that uses MediaConnect as a router for content delivery, with automatic encryption.
+
+#### JSON
+    
+    
+    {
+      "Type": "AWS::MediaLive::Input",
+      "Properties": {
+        "Name": "my-router-input",
+        "Type": "MEDIACONNECT_ROUTER",
+        "RouterSettings": {
+          "EncryptionType": "AUTOMATIC",
+          "Destinations": [
+            {
+              "AvailabilityZoneName": "us-east-1a"
+            },
+            {
+              "AvailabilityZoneName": "us-east-1b"
+            }
+          ]
+        }
+      }
+    }
+
+#### YAML
+    
+    
+    Type: AWS::MediaLive::Input
+    Properties:
+      Name: my-router-input
+      Type: MEDIACONNECT_ROUTER
+      RouterSettings:
+        EncryptionType: AUTOMATIC
+        Destinations:
+          - AvailabilityZoneName: us-east-1a
+          - AvailabilityZoneName: us-east-1b
+