Module Values.ReplicationConfigurationReplicatedDiskSource

The configuration of a disk of the Source Server to be replicated.

Sourcetype nonrec t = {
  1. deviceName : BoundedString.t option;
    (*

    The name of the device.

    *)
  2. isBootDisk : Boolean.t option;
    (*

    Whether to boot from this disk or not.

    *)
  3. stagingDiskType : ReplicationConfigurationReplicatedDiskStagingDiskType.t option;
    (*

    The Staging Disk EBS volume type to be used during replication.

    *)
  4. iops : PositiveInteger.t option;
    (*

    The requested number of I/O operations per second (IOPS).

    *)
  5. throughput : PositiveInteger.t option;
    (*

    The throughput to use for the EBS volume in MiB/s. This parameter is valid only for gp3 volumes.

    *)
  6. optimizedStagingDiskType : ReplicationConfigurationReplicatedDiskStagingDiskType.t option;
    (*

    The Staging Disk EBS volume type to be used during replication when stagingDiskType is set to Auto. This is a read-only field.

    *)
}
Sourceval make : ?deviceName:??? -> ?isBootDisk:??? -> ?stagingDiskType:??? -> ?iops:??? -> ?throughput:??? -> ?optimizedStagingDiskType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Long of PositiveInteger.t | `String of BoundedString.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