Module Values.DescribeEnvironmentManagedActionHistoryRequestSource

Request to list completed and failed managed actions.

Sourcetype nonrec t = {
  1. environmentId : EnvironmentId.t option;
    (*

    The environment ID of the target environment.

    *)
  2. environmentName : EnvironmentName.t option;
    (*

    The name of the target environment.

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

    The pagination token returned by a previous request.

    *)
  4. maxItems : ManagedActionHistoryMaxItems.t option;
    (*

    The maximum number of items to return for a single request.

    *)
}
Sourceval make : ?environmentId:??? -> ?environmentName:??? -> ?nextToken:??? -> ?maxItems:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of ManagedActionHistoryMaxItems.t | `String of EnvironmentId.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