Module Values.OrderableReplicationInstanceSource

In response to the DescribeOrderableReplicationInstances operation, this object describes an available replication instance. This description includes the replication instance's type, engine version, and allocated storage.

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

    The version of the replication engine.

    *)
  2. replicationInstanceClass : ReplicationInstanceClass.t option;
    (*

    The compute and memory capacity of the replication instance as defined for the specified replication instance class. For example to specify the instance class dms.c4.large, set this parameter to "dms.c4.large". For more information on the settings and capacities for the available replication instance classes, see Selecting the right DMS replication instance for your migration.

    *)
  3. storageType : String_.t option;
    (*

    The type of storage used by the replication instance.

    *)
  4. minAllocatedStorage : Integer.t option;
    (*

    The minimum amount of storage (in gigabytes) that can be allocated for the replication instance.

    *)
  5. maxAllocatedStorage : Integer.t option;
    (*

    The minimum amount of storage (in gigabytes) that can be allocated for the replication instance.

    *)
  6. defaultAllocatedStorage : Integer.t option;
    (*

    The default amount of storage (in gigabytes) that is allocated for the replication instance.

    *)
  7. includedAllocatedStorage : Integer.t option;
    (*

    The amount of storage (in gigabytes) that is allocated for the replication instance.

    *)
  8. availabilityZones : AvailabilityZonesList.t option;
    (*

    List of Availability Zones for this replication instance.

    *)
  9. releaseStatus : ReleaseStatusValues.t option;
    (*

    The value returned when the specified EngineVersion of the replication instance is in Beta or test mode. This indicates some features might not work as expected. DMS supports the ReleaseStatus parameter in versions 3.1.4 and later.

    *)
}
Sourceval make : ?engineVersion:??? -> ?replicationInstanceClass:??? -> ?storageType:??? -> ?minAllocatedStorage:??? -> ?maxAllocatedStorage:??? -> ?defaultAllocatedStorage:??? -> ?includedAllocatedStorage:??? -> ?availabilityZones:??? -> ?releaseStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `List of [> `String of String_.t ] list | `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