ResourceSpecification

A definition of what is being billed for, including the type and amount.

BroadcastingLive VideoMediaMedia Transport

Properties

Name Type Description
ReservedBitrate object
ResourceType object
View JSON Schema on GitHub

JSON Schema

mediaconnect-api-resource-specification-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-resource-specification-schema.json",
  "title": "ResourceSpecification",
  "description": "A definition of what is being billed for, including the type and amount.",
  "type": "object",
  "properties": {
    "ReservedBitrate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integer"
        },
        {
          "xml": {
            "name": "reservedBitrate"
          },
          "description": "The amount of outbound bandwidth that is discounted in the offering."
        }
      ]
    },
    "ResourceType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceType"
        },
        {
          "xml": {
            "name": "resourceType"
          },
          "description": "The type of resource and the unit that is being billed for."
        }
      ]
    }
  },
  "required": [
    "ResourceType"
  ]
}