Module Values.ScheduledActionSource

Information about a scheduled configuration change for an OpenSearch Service domain. This actions can be a service software update or a blue/green Auto-Tune enhancement.

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

    The unique identifier of the scheduled action.

    *)
  2. type_ : ActionType.t option;
    (*

    The type of action that will be taken on the domain.

    *)
  3. severity : ActionSeverity.t option;
    (*

    The severity of the action.

    *)
  4. scheduledTime : Long.t option;
    (*

    The time when the change is scheduled to happen.

    *)
  5. description : String_.t option;
    (*

    A description of the action to be taken.

    *)
  6. scheduledBy : ScheduledBy.t option;
    (*

    Whether the action was scheduled manually (CUSTOMER, or by OpenSearch Service automatically (SYSTEM).

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

    The current status of the scheduled action.

    *)
  8. mandatory : Boolean.t option;
    (*

    Whether the action is required or optional.

    *)
  9. cancellable : Boolean.t option;
    (*

    Whether or not the scheduled action is cancellable.

    *)
}
Sourceval make : ?id:??? -> ?type_:??? -> ?severity:??? -> ?scheduledTime:??? -> ?description:??? -> ?scheduledBy:??? -> ?status:??? -> ?mandatory:??? -> ?cancellable:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Long of Long.t | `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