LogPublishingOption

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

AnalyticsElasticsearchSearch

Properties

Name Type Description
CloudWatchLogsLogGroupArn object
Enabled object
View JSON Schema on GitHub

JSON Schema

openapi-log-publishing-option-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-opensearch/refs/heads/main/json-schema/openapi-log-publishing-option-schema.json",
  "title": "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."
        }
      ]
    }
  }
}