GetV2LoggingOptionsResponse

GetV2LoggingOptionsResponse schema

ComplianceIoTSecurityVulnerability Management

Properties

Name Type Description
roleArn object
defaultLogLevel object
disableAllLogs object
View JSON Schema on GitHub

JSON Schema

iot-device-defender-get-v2-logging-options-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-device-defender/refs/heads/main/json-schema/iot-device-defender-get-v2-logging-options-response-schema.json",
  "title": "GetV2LoggingOptionsResponse",
  "description": "GetV2LoggingOptionsResponse schema",
  "type": "object",
  "properties": {
    "roleArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AwsArn"
        },
        {
          "description": "The IAM role ARN IoT uses to write to your CloudWatch logs."
        }
      ]
    },
    "defaultLogLevel": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LogLevel"
        },
        {
          "description": "The default log level."
        }
      ]
    },
    "disableAllLogs": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DisableAllLogs"
        },
        {
          "description": "Disables all logs."
        }
      ]
    }
  }
}