Amazon MediaStore · JSON Structure

Mediastore Api Create Container Output Structure

CreateContainerOutput schema from Amazon MediaStore API

Type: object Properties: 1 Required: 1
BroadcastingMedia ProcessingMedia

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

Properties

Container

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-output-structure.json",
  "name": "CreateContainerOutput",
  "type": "object",
  "description": "CreateContainerOutput schema from Amazon MediaStore API",
  "properties": {
    "Container": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Container"
        },
        {
          "description": "<p>ContainerARN: The Amazon Resource Name (ARN) of the newly created container. The ARN has the following format: arn:aws:&lt;region&gt;:&lt;account that owns this container&gt;:container/&lt;name of container&gt;. For example: arn:aws:mediastore:us-west-2:111122223333:container/movies </p> <p>ContainerName: The container name as specified in the request.</p> <p>CreationTime: Unix time stamp.</p> <p>Status: The status of container creation or deletion. The status is one of the following: <code>CREATING</code>, <code>ACTIVE</code>, or <code>DELETING</code>. While the service is creating the container, the status is <code>CREATING</code>. When an endpoint is available, the status changes to <code>ACTIVE</code>.</p> <p>The return value does not include the container's endpoint. To make downstream requests, you must obtain this value by using <a>DescribeContainer</a> or <a>ListContainers</a>.</p>"
        }
      ]
    }
  },
  "required": [
    "Container"
  ]
}