Module Values.ApplyPendingMaintenanceActionInputSource

The type of pending maintenance action to be applied to the resource.

Sourcetype nonrec t = {
  1. applyAction : InputString.t;
    (*

    The pending maintenance action to apply to the resource. Valid actions are: ENGINE_UPDATE ENGINE_UPGRADE SECURITY_UPDATE OS_UPDATE MASTER_USER_PASSWORD_UPDATE

    *)
  2. applyOn : InputString.t option;
    (*

    A specific date to apply the pending maintenance action. Required if opt-in-type is APPLY_ON. Format: yyyy/MM/dd HH:mm-yyyy/MM/dd HH:mm

    *)
  3. optInType : OptInType.t;
    (*

    A value that specifies the type of opt-in request, or undoes an opt-in request. An opt-in request of type IMMEDIATE can't be undone.

    *)
  4. resourceArn : InputString.t;
    (*

    The Amazon DocumentDB Amazon Resource Name (ARN) of the resource to which the pending maintenance action applies.

    *)
}
Sourceval context_ : string
Sourceval make : ?applyOn:??? -> applyAction:InputString.t -> optInType:OptInType.t -> resourceArn:InputString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of InputString.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