Amazon MediaStore · Schema

ListContainersInput

ListContainersInput schema from Amazon MediaStore API

BroadcastingMedia ProcessingMedia

Properties

Name Type Description
NextToken object
MaxResults object
View JSON Schema on GitHub

JSON Schema

mediastore-api-list-containers-input-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediastore/refs/heads/main/json-schema/mediastore-api-list-containers-input-schema.json",
  "title": "ListContainersInput",
  "description": "ListContainersInput schema from Amazon MediaStore API",
  "type": "object",
  "properties": {
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PaginationToken"
        },
        {
          "description": "Only if you used <code>MaxResults</code> in the first command, enter the token (which was included in the previous response) to obtain the next set of containers. This token is included in a response only if there actually are more containers to list."
        }
      ]
    },
    "MaxResults": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ContainerListLimit"
        },
        {
          "description": "Enter the maximum number of containers in the response. Use from 1 to 255 characters. "
        }
      ]
    }
  }
}