GetV2LoggingOptionsResponse schema
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-device-management/refs/heads/main/json-schema/iot-device-management-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." } ] } } }