Module Values.DBClusterSource

Detailed information about a cluster.

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

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

    *)
  2. backupRetentionPeriod : IntegerOptional.t option;
    (*

    Specifies the number of days for which automatic snapshots are retained.

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

    Contains a user-supplied cluster identifier. This identifier is the unique key that identifies a cluster.

    *)
  4. dBClusterParameterGroup : String_.t option;
    (*

    Specifies the name of the cluster parameter group for the cluster.

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

    Specifies information on the subnet group that is associated with the cluster, including the name, description, and subnets in the subnet group.

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

    Specifies the current state of this cluster.

    *)
  7. percentProgress : String_.t option;
    (*

    Specifies the progress of the operation as a percentage.

    *)
  8. earliestRestorableTime : TStamp.t option;
    (*

    The earliest time to which a database can be restored with point-in-time restore.

    *)
  9. endpoint : String_.t option;
    (*

    Specifies the connection endpoint for the primary instance of the cluster.

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

    The reader endpoint for the cluster. The reader endpoint for a cluster load balances connections across the Amazon DocumentDB replicas that are available in a cluster. As clients request new connections to the reader endpoint, Amazon DocumentDB distributes the connection requests among the Amazon DocumentDB replicas in the cluster. This functionality can help balance your read workload across multiple Amazon DocumentDB replicas in your cluster. If a failover occurs, and the Amazon DocumentDB replica that you are connected to is promoted to be the primary instance, your connection is dropped. To continue sending your read workload to other Amazon DocumentDB replicas in the cluster, you can then reconnect to the reader endpoint.

    *)
  11. multiAZ : Boolean.t option;
    (*

    Specifies whether the cluster has instances in multiple Availability Zones.

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

    Provides the name of the database engine to be used for this cluster.

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

    Indicates the database engine version.

    *)
  14. latestRestorableTime : TStamp.t option;
    (*

    Specifies the latest time to which a database can be restored with point-in-time restore.

    *)
  15. port : IntegerOptional.t option;
    (*

    Specifies the port that the database engine is listening on.

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

    Contains the master user name for the cluster.

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

    Specifies the daily time range during which automated backups are created if automated backups are enabled, as determined by the BackupRetentionPeriod.

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

    Specifies the weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC).

    *)
  19. replicationSourceIdentifier : String_.t option;
    (*

    Contains the identifier of the source cluster if this cluster is a secondary cluster.

    *)
  20. readReplicaIdentifiers : ReadReplicaIdentifierList.t option;
    (*

    Contains one or more identifiers of the secondary clusters that are associated with this cluster.

    *)
  21. dBClusterMembers : DBClusterMemberList.t option;
    (*

    Provides the list of instances that make up the cluster.

    *)
  22. vpcSecurityGroups : VpcSecurityGroupMembershipList.t option;
    (*

    Provides a list of virtual private cloud (VPC) security groups that the cluster belongs to.

    *)
  23. hostedZoneId : String_.t option;
    (*

    Specifies the ID that Amazon Route 53 assigns when you create a hosted zone.

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

    Specifies whether the cluster is encrypted.

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

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

    *)
  26. dbClusterResourceId : String_.t option;
    (*

    The Amazon Web Services Region-unique, immutable identifier for the cluster. This identifier is found in CloudTrail log entries whenever the KMS key for the cluster is accessed.

    *)
  27. dBClusterArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) for the cluster.

    *)
  28. associatedRoles : DBClusterRoles.t option;
    (*

    Provides a list of the Identity and Access Management (IAM) roles that are associated with the cluster. (IAM) roles that are associated with a cluster grant permission for the cluster to access other Amazon Web Services services on your behalf.

    *)
  29. cloneGroupId : String_.t option;
    (*

    Identifies the clone group to which the DB cluster is associated.

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

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

    *)
  31. enabledCloudwatchLogsExports : LogTypeList.t option;
    (*

    A list of log types that this cluster is configured to export to Amazon CloudWatch Logs.

    *)
  32. deletionProtection : Boolean.t option;
    (*

    Specifies whether this cluster can be deleted. If DeletionProtection is enabled, the cluster cannot be deleted unless it is modified and DeletionProtection is disabled. DeletionProtection protects clusters from being accidentally deleted.

    *)
  33. iOOptimizedNextAllowedModificationTime : TStamp.t option;
    (*

    The next time you can modify the Amazon DocumentDB cluster to use the iopt1 storage type.

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

    Storage type associated with your cluster 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

    *)
  35. serverlessV2ScalingConfiguration : ServerlessV2ScalingConfigurationInfo.t option;
    (*

    The scaling configuration of an Amazon DocumentDB Serverless cluster.

    *)
  36. masterUserSecret : ClusterMasterUserSecret.t option;
    (*

    The secret managed by Amazon DocumentDB in Amazon Web Services Secrets Manager for the master user password.

    *)
  37. networkType : String_.t option;
    (*

    The network type of the cluster. The network type is determined by the DBSubnetGroup specified for the cluster. A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL). For more information, see DocumentDB clusters in a VPC in the Amazon DocumentDB Developer Guide. Valid Values: IPV4 | DUAL

    *)
}
Sourceval make : ?availabilityZones:??? -> ?backupRetentionPeriod:??? -> ?dBClusterIdentifier:??? -> ?dBClusterParameterGroup:??? -> ?dBSubnetGroup:??? -> ?status:??? -> ?percentProgress:??? -> ?earliestRestorableTime:??? -> ?endpoint:??? -> ?readerEndpoint:??? -> ?multiAZ:??? -> ?engine:??? -> ?engineVersion:??? -> ?latestRestorableTime:??? -> ?port:??? -> ?masterUsername:??? -> ?preferredBackupWindow:??? -> ?preferredMaintenanceWindow:??? -> ?replicationSourceIdentifier:??? -> ?readReplicaIdentifiers:??? -> ?dBClusterMembers:??? -> ?vpcSecurityGroups:??? -> ?hostedZoneId:??? -> ?storageEncrypted:??? -> ?kmsKeyId:??? -> ?dbClusterResourceId:??? -> ?dBClusterArn:??? -> ?associatedRoles:??? -> ?cloneGroupId:??? -> ?clusterCreateTime:??? -> ?enabledCloudwatchLogsExports:??? -> ?deletionProtection:??? -> ?iOOptimizedNextAllowedModificationTime:??? -> ?storageType:??? -> ?serverlessV2ScalingConfiguration:??? -> ?masterUserSecret:??? -> ?networkType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of IntegerOptional.t | `List of [> `String of String_.t | `Structure of (string * [> `Boolean of Boolean.t | `Integer of IntegerOptional.t | `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Double of DoubleOptional.t | `String of String_.t ]) list | `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