Module Values.DescribeOrganizationConfigRuleStatusesRequestSource

Provides organization Config rule deployment status for an organization. The status is not considered successful until organization Config rule is successfully deployed in all the member accounts with an exception of excluded accounts. When you specify the limit and the next token, you receive a paginated response. Limit and next token are not applicable if you specify organization Config rule names. It is only applicable, when you request all the organization Config rules.

Sourcetype nonrec t = {
  1. organizationConfigRuleNames : OrganizationConfigRuleNames.t option;
    (*

    The names of organization Config rules for which you want status details. If you do not specify any names, Config returns details for all your organization Config rules.

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

    The maximum number of OrganizationConfigRuleStatuses returned on each page. If you do no specify a number, Config uses the default. The default is 100.

    *)
  3. 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.

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