Module Values.AuditTargetEntitySource

A union structure that contains the specific entity information for different types of audit targets.

Sourcetype nonrec t = {
  1. service : ServiceEntity.t option;
    (*

    Service entity information when the audit target is a service.

    *)
  2. slo : ServiceLevelObjectiveEntity.t option;
    (*

    SLO entity information when the audit target is a service level objective.

    *)
  3. serviceOperation : ServiceOperationEntity.t option;
    (*

    Service operation entity information when the audit target is a specific service operation.

    *)
  4. canary : CanaryEntity.t option;
    (*

    Canary entity information when the audit target is a CloudWatch Synthetics canary.

    *)
}
Sourceval make : ?service:??? -> ?slo:??? -> ?serviceOperation:??? -> ?canary:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ]) list ]) 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