Module Values.RebootDBInstanceMessageSource

Represents the input to RebootDBInstance.

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

    The instance identifier. This parameter is stored as a lowercase string. Constraints: Must match the identifier of an existing DBInstance.

    *)
  2. forceFailover : BooleanOptional.t option;
    (*

    When true, the reboot is conducted through a Multi-AZ failover. Constraint: You can't specify true if the instance is not configured for Multi-AZ.

    *)
}
Sourceval context_ : string
Sourceval make : ?forceFailover:??? -> dBInstanceIdentifier:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanOptional.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