Module Values.DescribeEnvironmentManagedActionsRequestSource

Request to list an environment's upcoming and in-progress managed actions.

Sourcetype nonrec t = {
  1. environmentName : String_.t option;
    (*

    The name of the target environment.

    *)
  2. environmentId : String_.t option;
    (*

    The environment ID of the target environment.

    *)
  3. status : ActionStatus.t option;
    (*

    To show only actions with a particular status, specify a status.

    *)
}
Sourceval make : ?environmentName:??? -> ?environmentId:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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