Amazon OpenSearch Service API · JSON Structure

Openapi Log Publishing Option Structure

Log Publishing option that is set for given domain.
Attributes and their details:

Type: object Properties: 2
AnalyticsElasticsearchSearch

LogPublishingOption is a JSON Structure definition published by Amazon OpenSearch Service API, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

CloudWatchLogsLogGroupArn Enabled

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-opensearch/refs/heads/main/json-structure/openapi-log-publishing-option-structure.json",
  "name": "LogPublishingOption",
  "description": "Log Publishing option that is set for given domain. <br/>Attributes and their details: <ul> <li>CloudWatchLogsLogGroupArn: ARN of the Cloudwatch log group to which log needs to be published.</li> <li>Enabled: Whether the log publishing for given log type is enabled or not</li> </ul> ",
  "type": "object",
  "properties": {
    "CloudWatchLogsLogGroupArn": {
      "$ref": "#/components/schemas/CloudWatchLogsLogGroupArn"
    },
    "Enabled": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Boolean"
        },
        {
          "description": " Specifies whether given log publishing option is enabled or not."
        }
      ]
    }
  }
}