Module Values.RebootReplicationInstanceMessageSource

Reboots a replication instance. Rebooting results in a momentary outage, until the replication instance becomes available again.

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

    The Amazon Resource Name (ARN) of the replication instance.

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

    If this parameter is true, the reboot is conducted through a Multi-AZ failover. If the instance isn't configured for Multi-AZ, then you can't specify true. ( --force-planned-failover and --force-failover can't both be set to true.)

    *)
  3. forcePlannedFailover : BooleanOptional.t option;
    (*

    If this parameter is true, the reboot is conducted through a planned Multi-AZ failover where resources are released and cleaned up prior to conducting the failover. If the instance isn''t configured for Multi-AZ, then you can't specify true. ( --force-planned-failover and --force-failover can't both be set to true.)

    *)
}
Sourceval context_ : string
Sourceval make : ?forceFailover:??? -> ?forcePlannedFailover:??? -> replicationInstanceArn: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