Module Values.GetFailbackReplicationConfigurationResponseSource

Lists all Failback ReplicationConfigurations, filtered by Recovery Instance ID.

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

    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)

    *)
}
Sourcetype nonrec error = [
  1. | `InternalServerException of InternalServerException.t
  2. | `ResourceNotFoundException of ResourceNotFoundException.t
  3. | `ThrottlingException of ThrottlingException.t
  4. | `UninitializedAccountException of UninitializedAccountException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?recoveryInstanceID:??? -> ?name:??? -> ?bandwidthThrottling:??? -> ?usePrivateIP:??? -> ?internetProtocol:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `UninitializedAccountException of UninitializedAccountException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `UninitializedAccountException of UninitializedAccountException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.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