Module Values.ProvisionDataSource

Information about provisioning resources for an DMS serverless replication.

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

    The current provisioning state

    *)
  2. provisionedCapacityUnits : Integer.t option;
    (*

    The number of capacity units the replication is using.

    *)
  3. dateProvisioned : TStamp.t option;
    (*

    The timestamp when DMS provisioned replication resources.

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

    Whether the new provisioning is available to the replication.

    *)
  5. dateNewProvisioningDataAvailable : TStamp.t option;
    (*

    The timestamp when provisioning became available.

    *)
  6. reasonForNewProvisioningData : String_.t option;
    (*

    A message describing the reason that DMS provisioned new resources for the serverless replication.

    *)
}
Sourceval make : ?provisionState:??? -> ?provisionedCapacityUnits:??? -> ?dateProvisioned:??? -> ?isNewProvisioningAvailable:??? -> ?dateNewProvisioningDataAvailable:??? -> ?reasonForNewProvisioningData:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `String of String_.t | `Timestamp of TStamp.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