Amazon MediaStore · Schema

PutContainerPolicyInput

PutContainerPolicyInput schema from Amazon MediaStore API

BroadcastingMedia ProcessingMedia

Properties

Name Type Description
ContainerName object
Policy object
View JSON Schema on GitHub

JSON Schema

mediastore-api-put-container-policy-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-put-container-policy-input-schema.json",
  "title": "PutContainerPolicyInput",
  "description": "PutContainerPolicyInput schema from Amazon MediaStore API",
  "type": "object",
  "properties": {
    "ContainerName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ContainerName"
        },
        {
          "description": "The name of the container."
        }
      ]
    },
    "Policy": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ContainerPolicy"
        },
        {
          "description": "<p>The contents of the policy, which includes the following: </p> <ul> <li> <p>One <code>Version</code> tag</p> </li> <li> <p>One <code>Statement</code> tag that contains the standard tags for the policy.</p> </li> </ul>"
        }
      ]
    }
  },
  "required": [
    "ContainerName",
    "Policy"
  ]
}