Amazon Managed Prometheus Update Logging Configuration Request Structure

Represents the input of an UpdateLoggingConfiguration operation.

Type: object Properties: 2 Required: 1
ContainersMonitoringObservabilityPrometheus

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

Properties

logGroupArn clientToken

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-update-logging-configuration-request-structure.json",
  "name": "UpdateLoggingConfigurationRequest",
  "description": "Represents the input of an UpdateLoggingConfiguration 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"
  ]
}