CockroachDB · Schema

EnableCloudWatchMetricExportRequest

Request body for enabling AWS CloudWatch metric export.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
role_arn string AWS IAM role ARN to assume for CloudWatch metric publishing.
target_region string AWS region where metrics should be exported.
View JSON Schema on GitHub

JSON Schema

cockroachdb-enablecloudwatchmetricexportrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EnableCloudWatchMetricExportRequest",
  "title": "EnableCloudWatchMetricExportRequest",
  "type": "object",
  "description": "Request body for enabling AWS CloudWatch metric export.",
  "required": [
    "role_arn"
  ],
  "properties": {
    "role_arn": {
      "type": "string",
      "description": "AWS IAM role ARN to assume for CloudWatch metric publishing."
    },
    "target_region": {
      "type": "string",
      "description": "AWS region where metrics should be exported."
    }
  }
}