Amazon Managed Prometheus Create Rule Groups Namespace Request Structure

Represents the input of a CreateRuleGroupsNamespace operation.

Type: object Properties: 4 Required: 2
ContainersMonitoringObservabilityPrometheus

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

Properties

name data clientToken tags

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-managed-prometheus/refs/heads/main/json-structure/amazon-managed-prometheus-create-rule-groups-namespace-request-structure.json",
  "name": "CreateRuleGroupsNamespaceRequest",
  "description": "Represents the input of a CreateRuleGroupsNamespace operation.",
  "type": "object",
  "properties": {
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RuleGroupsNamespaceName"
        },
        {
          "description": "The rule groups namespace name."
        }
      ]
    },
    "data": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RuleGroupsNamespaceData"
        },
        {
          "description": "The namespace data that define the rule groups."
        }
      ]
    },
    "clientToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IdempotencyToken"
        },
        {
          "description": "Optional, unique, case-sensitive, user-provided identifier to ensure the idempotency of the request."
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagMap"
        },
        {
          "description": "Optional, user-provided tags for this rule groups namespace."
        }
      ]
    }
  },
  "required": [
    "name",
    "data"
  ]
}