Amazon MediaLive · Schema

VpcOutputSettingsDescription

The properties for a private VPC Output

BroadcastingMedia ProcessingMedia

Properties

Name Type Description
AvailabilityZones object
NetworkInterfaceIds object
SecurityGroupIds object
SubnetIds object
View JSON Schema on GitHub

JSON Schema

medialive-api-vpc-output-settings-description-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-medialive/refs/heads/main/json-schema/medialive-api-vpc-output-settings-description-schema.json",
  "title": "VpcOutputSettingsDescription",
  "description": "The properties for a private VPC Output\n",
  "type": "object",
  "properties": {
    "AvailabilityZones": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__listOf__string"
        },
        {
          "xml": {
            "name": "availabilityZones"
          },
          "description": "The Availability Zones where the vpc subnets are located.\nThe first Availability Zone applies to the first subnet in the list of subnets.\nThe second Availability Zone applies to the second subnet.\n"
        }
      ]
    },
    "NetworkInterfaceIds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__listOf__string"
        },
        {
          "xml": {
            "name": "networkInterfaceIds"
          },
          "description": "A list of Elastic Network Interfaces created by MediaLive in the customer's VPC\n"
        }
      ]
    },
    "SecurityGroupIds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__listOf__string"
        },
        {
          "xml": {
            "name": "securityGroupIds"
          },
          "description": "A list of up EC2 VPC security group IDs attached to the Output VPC network interfaces.\n"
        }
      ]
    },
    "SubnetIds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__listOf__string"
        },
        {
          "xml": {
            "name": "subnetIds"
          },
          "description": "A list of VPC subnet IDs from the same VPC.\nIf STANDARD channel, subnet IDs must be mapped to two unique availability zones (AZ).\n"
        }
      ]
    }
  }
}