CockroachDB · Schema

CloudWatchMetricExportInfo

AWS CloudWatch metric export configuration for a cluster.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
cluster_id string ID of the cluster this configuration applies to.
status string Current status of CloudWatch metric export.
role_arn string AWS IAM role ARN used for CloudWatch metric export.
View JSON Schema on GitHub

JSON Schema

cockroachdb-cloudwatchmetricexportinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CloudWatchMetricExportInfo",
  "title": "CloudWatchMetricExportInfo",
  "type": "object",
  "description": "AWS CloudWatch metric export configuration for a cluster.",
  "properties": {
    "cluster_id": {
      "type": "string",
      "description": "ID of the cluster this configuration applies to."
    },
    "status": {
      "type": "string",
      "description": "Current status of CloudWatch metric export."
    },
    "role_arn": {
      "type": "string",
      "description": "AWS IAM role ARN used for CloudWatch metric export."
    }
  }
}