Module Values.LoggingOptionsSource

The values of the AWS IoT Events logging options.

Sourcetype nonrec t = {
  1. roleArn : AmazonResourceName.t;
    (*

    The ARN of the role that grants permission to AWS IoT Events to perform logging.

    *)
  2. level : LoggingLevel.t;
    (*

    The logging level.

    *)
  3. enabled : LoggingEnabled.t;
    (*

    If TRUE, logging is enabled for AWS IoT Events.

    *)
  4. detectorDebugOptions : DetectorDebugOptions.t option;
    (*

    Information that identifies those detector models and their detectors (instances) for which the logging level is given.

    *)
}
Sourceval context_ : string
Sourceval make : ?detectorDebugOptions:??? -> roleArn:AmazonResourceName.t -> level:LoggingLevel.t -> enabled:LoggingEnabled.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of LoggingEnabled.t | `Enum of string | `List of [> `Structure of (string * [> `String of DetectorModelName.t ]) list ] list | `String of AmazonResourceName.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t