Module Values.DescribeRemediationExecutionStatusRequestSource

Provides a detailed view of a Remediation Execution for a set of resources including state, timestamps for when steps for the remediation execution occur, and any error messages for steps that have failed. When you specify the limit and the next token, you receive a paginated response.

Sourcetype nonrec t = {
  1. configRuleName : ConfigRuleName.t;
    (*

    The name of the Config rule.

    *)
  2. resourceKeys : ResourceKeys.t option;
    (*

    A list of resource keys to be processed with the current request. Each element in the list consists of the resource type and resource ID.

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

    The maximum number of RemediationExecutionStatuses returned on each page. The default is maximum. If you specify 0, Config uses the default.

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

    *)
}
Sourceval context_ : string
Sourceval make : ?resourceKeys:??? -> ?limit:??? -> ?nextToken:??? -> configRuleName:ConfigRuleName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Limit.t | `List of [> `Structure of (string * [> `Enum of string | `String of ResourceId.t ]) list ] list | `String of ConfigRuleName.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