Amazon MediaStore · JSON Structure

Mediastore Api Create Container Input Structure

CreateContainerInput schema from Amazon MediaStore API

Type: object Properties: 2 Required: 1
BroadcastingMedia ProcessingMedia

CreateContainerInput is a JSON Structure definition published by Amazon MediaStore, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

ContainerName Tags

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediastore/refs/heads/main/json-structure/mediastore-api-create-container-input-structure.json",
  "name": "CreateContainerInput",
  "type": "object",
  "description": "CreateContainerInput schema from Amazon MediaStore API",
  "properties": {
    "ContainerName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ContainerName"
        },
        {
          "description": "The name for the container. The name must be from 1 to 255 characters. Container names must be unique to your AWS account within a specific region. As an example, you could create a container named <code>movies</code> in every region, as long as you don\u2019t have an existing container with that name."
        }
      ]
    },
    "Tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagList"
        },
        {
          "description": "An array of key:value pairs that you define. These values can be anything that you want. Typically, the tag key represents a category (such as \"environment\") and the tag value represents a specific value within that category (such as \"test,\" \"development,\" or \"production\"). You can add up to 50 tags to each container. For more information about tagging, including naming and usage conventions, see <a href=\"https://docs.aws.amazon.com/mediastore/latest/ug/tagging.html\">Tagging Resources in MediaStore</a>."
        }
      ]
    }
  },
  "required": [
    "ContainerName"
  ]
}