Module Values.DescribeComplianceByResourceRequestSource

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

    The types of Amazon Web Services resources for which you want compliance information (for example, AWS::EC2::Instance). For this operation, you can specify that the resource type is an Amazon Web Services account by specifying AWS::::Account.

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

    The ID of the Amazon Web Services resource for which you want compliance information. You can specify only one resource ID. If you specify a resource ID, you must also specify a type for ResourceType.

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

    Filters the results by compliance.

    *)
  4. limit : Limit.t option;
    (*

    The maximum number of evaluation results returned on each page. The default is 10. You cannot specify a number greater than 100. If you specify 0, Config uses the default.

    *)
  5. nextToken : NextToken.t option;
    (*

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

    *)
}
Sourceval make : ?resourceType:??? -> ?resourceId:??? -> ?complianceTypes:??? -> ?limit:??? -> ?nextToken:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Limit.t | `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