Module Values.DBClusterSnapshotSource

Detailed information about a cluster snapshot.

Sourcetype nonrec t = {
  1. availabilityZones : AvailabilityZones.t option;
    (*

    Provides the list of Amazon EC2 Availability Zones that instances in the cluster snapshot can be restored in.

    *)
  2. dBClusterSnapshotIdentifier : String_.t option;
    (*

    Specifies the identifier for the cluster snapshot.

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

    Specifies the cluster identifier of the cluster that this cluster snapshot was created from.

    *)
  4. snapshotCreateTime : TStamp.t option;
    (*

    Provides the time when the snapshot was taken, in UTC.

    *)
  5. engine : String_.t option;
    (*

    Specifies the name of the database engine.

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

    Specifies the status of this cluster snapshot.

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

    Specifies the port that the cluster was listening on at the time of the snapshot.

    *)
  8. vpcId : String_.t option;
    (*

    Provides the virtual private cloud (VPC) ID that is associated with the cluster snapshot.

    *)
  9. clusterCreateTime : TStamp.t option;
    (*

    Specifies the time when the cluster was created, in Universal Coordinated Time (UTC).

    *)
  10. masterUsername : String_.t option;
    (*

    Provides the master user name for the cluster snapshot.

    *)
  11. engineVersion : String_.t option;
    (*

    Provides the version of the database engine for this cluster snapshot.

    *)
  12. snapshotType : String_.t option;
    (*

    Provides the type of the cluster snapshot.

    *)
  13. percentProgress : Integer.t option;
    (*

    Specifies the percentage of the estimated data that has been transferred.

    *)
  14. storageEncrypted : Boolean.t option;
    (*

    Specifies whether the cluster snapshot is encrypted.

    *)
  15. kmsKeyId : String_.t option;
    (*

    If StorageEncrypted is true, the KMS key identifier for the encrypted cluster snapshot.

    *)
  16. dBClusterSnapshotArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) for the cluster snapshot.

    *)
  17. sourceDBClusterSnapshotArn : String_.t option;
    (*

    If the cluster snapshot was copied from a source cluster snapshot, the ARN for the source cluster snapshot; otherwise, a null value.

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

    Storage type associated with your cluster snapshot For information on storage types for Amazon DocumentDB clusters, see Cluster storage configurations in the Amazon DocumentDB Developer Guide. Valid values for storage type - standard | iopt1 Default value is standard

    *)
}
Sourceval make : ?availabilityZones:??? -> ?dBClusterSnapshotIdentifier:??? -> ?dBClusterIdentifier:??? -> ?snapshotCreateTime:??? -> ?engine:??? -> ?status:??? -> ?port:??? -> ?vpcId:??? -> ?clusterCreateTime:??? -> ?masterUsername:??? -> ?engineVersion:??? -> ?snapshotType:??? -> ?percentProgress:??? -> ?storageEncrypted:??? -> ?kmsKeyId:??? -> ?dBClusterSnapshotArn:??? -> ?sourceDBClusterSnapshotArn:??? -> ?storageType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `List of [> `String of String_.t ] list | `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