Module Values_1.ResourceComplianceSummaryItemSource

Compliance summary information for a specific resource.

Sourcetype nonrec t = {
  1. complianceType : Values_0.ComplianceTypeName.t option;
    (*

    The compliance type.

    *)
  2. resourceType : Values_0.ComplianceResourceType.t option;
    (*

    The resource type.

    *)
  3. resourceId : Values_0.ComplianceResourceId.t option;
    (*

    The resource ID.

    *)
  4. status : Values_0.ComplianceStatus.t option;
    (*

    The compliance status for the resource.

    *)
  5. overallSeverity : Values_0.ComplianceSeverity.t option;
    (*

    The highest severity item found for the resource. The resource is compliant for this item.

    *)
  6. executionSummary : Values_0.ComplianceExecutionSummary.t option;
    (*

    Information about the execution.

    *)
  7. compliantSummary : Values_0.CompliantSummary.t option;
    (*

    A list of items that are compliant for the resource.

    *)
  8. nonCompliantSummary : Values_0.NonCompliantSummary.t option;
    (*

    A list of items that aren't compliant for the resource.

    *)
}
Sourceval make : ?complianceType:??? -> ?resourceType:??? -> ?resourceId:??? -> ?status:??? -> ?overallSeverity:??? -> ?executionSummary:??? -> ?compliantSummary:??? -> ?nonCompliantSummary:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.ComplianceTypeName.t | `Structure of (string * [> `Integer of int | `String of string | `Structure of (string * [> `Integer of int ]) list | `Timestamp of string ]) 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