Module Values.ManagedActionSource

The record of an upcoming or in-progress managed action.

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

    A unique identifier for the managed action.

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

    A description of the managed action.

    *)
  3. actionType : ActionType.t option;
    (*

    The type of managed action.

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

    The status of the managed action. If the action is Scheduled, you can apply it immediately with ApplyEnvironmentManagedAction.

    *)
  5. windowStartTime : Timestamp.t option;
    (*

    The start time of the maintenance window in which the managed action will execute.

    *)
}
Sourceval make : ?actionId:??? -> ?actionDescription:??? -> ?actionType:??? -> ?status:??? -> ?windowStartTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of Timestamp.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