Module Values.DescribeConformancePackStatusRequestSource

Provides one or more conformance packs deployment status. If there are no conformance packs then you will see an empty result.

Sourcetype nonrec t = {
  1. conformancePackNames : ConformancePackNamesList.t option;
    (*

    Comma-separated list of conformance pack names.

    *)
  2. limit : PageSizeLimit.t option;
    (*

    The maximum number of conformance packs status returned on each page.

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

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

    *)
}
Sourceval make : ?conformancePackNames:??? -> ?limit:??? -> ?nextToken:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of PageSizeLimit.t | `List of [> `String of ConformancePackName.t ] list | `String of NextToken.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