Module Values.GetComplianceDetailsByResourceRequestSource

Sourcetype nonrec t = {
  1. resourceType : StringWithCharLimit256.t option;
    (*

    The type of the Amazon Web Services resource for which you want compliance information.

    *)
  2. resourceId : BaseResourceId.t option;
    (*

    The ID of the Amazon Web Services resource for which you want compliance information.

    *)
  3. complianceTypes : ComplianceTypes.t option;
    (*

    Filters the results by compliance. INSUFFICIENT_DATA is a valid ComplianceType that is returned when an Config rule cannot be evaluated. However, INSUFFICIENT_DATA cannot be used as a ComplianceType for filtering results.

    *)
  4. nextToken : String_.t option;
    (*

    The nextToken string returned on a previous page that you use to get the next page of results in a paginated response.

    *)
  5. resourceEvaluationId : ResourceEvaluationId.t option;
    (*

    The unique ID of Amazon Web Services resource execution for which you want to retrieve evaluation results. You need to only provide either a ResourceEvaluationID or a ResourceID and ResourceType.

    *)
}
Sourceval make : ?resourceType:??? -> ?resourceId:??? -> ?complianceTypes:??? -> ?nextToken:??? -> ?resourceEvaluationId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string ] list | `String of StringWithCharLimit256.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