Module Values.UpdateFailbackReplicationConfigurationRequestSource

Allows you to update the failback replication configuration of a Recovery Instance by ID.

Sourcetype nonrec t = {
  1. recoveryInstanceID : RecoveryInstanceID.t;
    (*

    The ID of the Recovery Instance.

    *)
  2. name : BoundedString.t option;
    (*

    The name of the Failback Replication Configuration.

    *)
  3. bandwidthThrottling : PositiveInteger.t option;
    (*

    Configure bandwidth throttling for the outbound data transfer rate of the Recovery Instance in Mbps.

    *)
  4. usePrivateIP : Boolean.t option;
    (*

    Whether to use Private IP for the failback replication of the Recovery Instance.

    *)
  5. internetProtocol : InternetProtocol.t option;
    (*

    Which version of the Internet Protocol to use for replication of data. (IPv4 or IPv6)

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?bandwidthThrottling:??? -> ?usePrivateIP:??? -> ?internetProtocol:??? -> recoveryInstanceID:RecoveryInstanceID.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Long of PositiveInteger.t | `String of RecoveryInstanceID.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