Amazon MediaStore · JSON Structure

Mediastore Api Put Metric Policy Input Structure

PutMetricPolicyInput schema from Amazon MediaStore API

Type: object Properties: 2 Required: 2
BroadcastingMedia ProcessingMedia

PutMetricPolicyInput 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 MetricPolicy

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-metric-policy-input-structure.json",
  "name": "PutMetricPolicyInput",
  "type": "object",
  "description": "PutMetricPolicyInput schema from Amazon MediaStore API",
  "properties": {
    "ContainerName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ContainerName"
        },
        {
          "description": "The name of the container that you want to add the metric policy to."
        }
      ]
    },
    "MetricPolicy": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MetricPolicy"
        },
        {
          "description": "<p>The metric policy that you want to associate with the container. In the policy, you must indicate whether you want MediaStore to send container-level metrics. You can also include up to five rules to define groups of objects that you want MediaStore to send object-level metrics for. If you include rules in the policy, construct each rule with both of the following:</p> <ul> <li> <p>An object group that defines which objects to include in the group. The definition can be a path or a file name, but it can't have more than 900 characters. Valid characters are: a-z, A-Z, 0-9, _ (underscore), = (equal), : (colon), . (period), - (hyphen), ~ (tilde), / (forward slash), and * (asterisk). Wildcards (*) are acceptable.</p> </li> <li> <p>An object group name that allows you to refer to the object group. The name can't have more than 30 characters. Valid characters are: a-z, A-Z, 0-9, and _ (underscore).</p> </li> </ul>"
        }
      ]
    }
  },
  "required": [
    "ContainerName",
    "MetricPolicy"
  ]
}