Module Values.AwsRdsDbClusterSnapshotDetailsSource

Information about an Amazon RDS DB cluster snapshot.

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

    A list of Availability Zones where instances in the DB cluster can be created.

    *)
  2. snapshotCreateTime : NonEmptyString.t option;
    (*

    Indicates when the snapshot was taken. For more information about the validation and formatting of timestamp fields in Security Hub CSPM, see Timestamps.

    *)
  3. engine : NonEmptyString.t option;
    (*

    The name of the database engine that you want to use for this DB instance.

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

    Specifies the allocated storage size in gibibytes (GiB).

    *)
  5. status : NonEmptyString.t option;
    (*

    The status of this DB cluster snapshot.

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

    The port number on which the DB instances in the DB cluster accept connections.

    *)
  7. vpcId : NonEmptyString.t option;
    (*

    The VPC ID that is associated with the DB cluster snapshot.

    *)
  8. clusterCreateTime : NonEmptyString.t option;
    (*

    Indicates when the DB cluster was created, in Universal Coordinated Time (UTC). For more information about the validation and formatting of timestamp fields in Security Hub CSPM, see Timestamps.

    *)
  9. masterUsername : NonEmptyString.t option;
    (*

    The name of the master user for the DB cluster.

    *)
  10. engineVersion : NonEmptyString.t option;
    (*

    The version of the database engine to use.

    *)
  11. licenseModel : NonEmptyString.t option;
    (*

    The license model information for this DB cluster snapshot.

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

    The type of DB cluster snapshot.

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

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

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

    Whether the DB cluster is encrypted.

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

    The ARN of the KMS master key that is used to encrypt the database instances in the DB cluster.

    *)
  16. dbClusterIdentifier : NonEmptyString.t option;
    (*

    The DB cluster identifier.

    *)
  17. dbClusterSnapshotIdentifier : NonEmptyString.t option;
    (*

    The identifier of the DB cluster snapshot.

    *)
  18. iamDatabaseAuthenticationEnabled : Boolean.t option;
    (*

    Whether mapping of IAM accounts to database accounts is enabled.

    *)
  19. dbClusterSnapshotAttributes : AwsRdsDbClusterSnapshotDbClusterSnapshotAttributes.t option;
    (*

    Contains the name and values of a manual DB cluster snapshot attribute.

    *)
}
Sourceval make : ?availabilityZones:??? -> ?snapshotCreateTime:??? -> ?engine:??? -> ?allocatedStorage:??? -> ?status:??? -> ?port:??? -> ?vpcId:??? -> ?clusterCreateTime:??? -> ?masterUsername:??? -> ?engineVersion:??? -> ?licenseModel:??? -> ?snapshotType:??? -> ?percentProgress:??? -> ?storageEncrypted:??? -> ?kmsKeyId:??? -> ?dbClusterIdentifier:??? -> ?dbClusterSnapshotIdentifier:??? -> ?iamDatabaseAuthenticationEnabled:??? -> ?dbClusterSnapshotAttributes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `List of [> `String of NonEmptyString.t | `Structure of (string * [> `List of [> `String of NonEmptyString.t ] list | `String of NonEmptyString.t ]) list ] list | `String of NonEmptyString.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