CreateLoggingConfigurationRequest

Represents the input of a CreateLoggingConfiguration operation.

ContainersMonitoringObservabilityPrometheus

Properties

Name Type Description
logGroupArn object
clientToken object
View JSON Schema on GitHub

JSON Schema

amazon-managed-prometheus-create-logging-configuration-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-managed-prometheus/refs/heads/main/json-schema/amazon-managed-prometheus-create-logging-configuration-request-schema.json",
  "title": "CreateLoggingConfigurationRequest",
  "description": "Represents the input of a CreateLoggingConfiguration operation.",
  "type": "object",
  "properties": {
    "logGroupArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LogGroupArn"
        },
        {
          "description": "The ARN of the CW log group to which the vended log data will be published."
        }
      ]
    },
    "clientToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IdempotencyToken"
        },
        {
          "description": "Optional, unique, case-sensitive, user-provided identifier to ensure the idempotency of the request."
        }
      ]
    }
  },
  "required": [
    "logGroupArn"
  ]
}