Module Values.GetResourceConfigHistoryRequestSource

The input for the GetResourceConfigHistory action.

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

    The resource type.

    *)
  2. resourceId : ResourceId.t;
    (*

    The ID of the resource (for example., sg-xxxxxx).

    *)
  3. laterTime : LaterTime.t option;
    (*

    The chronologically latest time in the time range for which the history requested. If not specified, current time is taken.

    *)
  4. earlierTime : EarlierTime.t option;
    (*

    The chronologically earliest time in the time range for which the history requested. If not specified, the action returns paginated results that contain configuration items that start when the first configuration item was recorded.

    *)
  5. chronologicalOrder : ChronologicalOrder.t option;
    (*

    The chronological order for configuration items listed. By default, the results are listed in reverse chronological order.

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

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

    *)
  7. 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 context_ : string
Sourceval make : ?laterTime:??? -> ?earlierTime:??? -> ?chronologicalOrder:??? -> ?limit:??? -> ?nextToken:??? -> resourceType:ResourceType.t -> resourceId:ResourceId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Limit.t | `String of ResourceId.t | `Timestamp of LaterTime.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