Amazon MediaStore · JSON Structure

Mediastore Api Put Container Policy Input Structure

PutContainerPolicyInput schema from Amazon MediaStore API

Type: object Properties: 2 Required: 2
BroadcastingMedia ProcessingMedia

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

Properties

ContainerName Policy

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-put-container-policy-input-structure.json",
  "name": "PutContainerPolicyInput",
  "type": "object",
  "description": "PutContainerPolicyInput schema from Amazon MediaStore API",
  "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"
  ]
}