ListedGatewayInstance

Provides a summary of an instance.

BroadcastingLive VideoMediaMedia Transport

Properties

Name Type Description
GatewayArn object
GatewayInstanceArn object
InstanceId object
InstanceState object
View JSON Schema on GitHub

JSON Schema

mediaconnect-api-listed-gateway-instance-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediaconnect/refs/heads/main/json-schema/mediaconnect-api-listed-gateway-instance-schema.json",
  "title": "ListedGatewayInstance",
  "description": "Provides a summary of an instance.",
  "type": "object",
  "properties": {
    "GatewayArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "gatewayArn"
          },
          "description": "The Amazon Resource Name (ARN) of the gateway."
        }
      ]
    },
    "GatewayInstanceArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "gatewayInstanceArn"
          },
          "description": "The Amazon Resource Name (ARN) of the instance."
        }
      ]
    },
    "InstanceId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "instanceId"
          },
          "description": "The managed instance ID generated by the SSM install. This will begin with \"mi-\"."
        }
      ]
    },
    "InstanceState": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InstanceState"
        },
        {
          "xml": {
            "name": "instanceState"
          },
          "description": "The status of the instance."
        }
      ]
    }
  },
  "required": [
    "GatewayArn",
    "GatewayInstanceArn",
    "InstanceId"
  ]
}