Module Values.DbClusterSummarySource

Describes a summary of a Timestream for InfluxDB cluster.

Sourcetype nonrec t = {
  1. id : DbClusterId.t option;
    (*

    Service-generated unique identifier of the DB cluster to retrieve.

    *)
  2. name : DbClusterName.t option;
    (*

    Customer supplied name of the Timestream for InfluxDB cluster.

    *)
  3. arn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the DB cluster.

    *)
  4. status : ClusterStatus.t option;
    (*

    The status of the DB cluster.

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

    The endpoint used to connect to the Timestream for InfluxDB cluster for write and read operations.

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

    The endpoint used to connect to the Timestream for InfluxDB cluster for read-only operations.

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

    The port number on which InfluxDB accepts connections.

    *)
  8. deploymentType : ClusterDeploymentType.t option;
    (*

    Deployment type of the DB cluster

    *)
  9. dbInstanceType : DbInstanceType.t option;
    (*

    The Timestream for InfluxDB DB instance type that InfluxDB runs on.

    *)
  10. networkType : NetworkType.t option;
    (*

    Specifies whether the network type of the Timestream for InfluxDB Cluster is IPv4, which can communicate over IPv4 protocol only, or DUAL, which can communicate over both IPv4 and IPv6 protocols.

    *)
  11. dbStorageType : DbStorageType.t option;
    (*

    The Timestream for InfluxDB DB storage type that InfluxDB stores data on.

    *)
  12. allocatedStorage : AllocatedStorage.t option;
    (*

    The amount of storage allocated for your DB storage type (in gibibytes).

    *)
  13. engineType : EngineType.t option;
    (*

    The engine type of your DB cluster.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?arn:??? -> ?status:??? -> ?endpoint:??? -> ?readerEndpoint:??? -> ?port:??? -> ?deploymentType:??? -> ?dbInstanceType:??? -> ?networkType:??? -> ?dbStorageType:??? -> ?allocatedStorage:??? -> ?engineType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Port.t | `String of DbClusterId.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