Module Values.DescribeGlobalClustersMessageSource

Returns information about Amazon DocumentDB global clusters. This API supports pagination. This action only applies to Amazon DocumentDB clusters.

Sourcetype nonrec t = {
  1. globalClusterIdentifier : GlobalClusterIdentifier.t option;
    (*

    The user-supplied cluster identifier. If this parameter is specified, information from only the specific cluster is returned. This parameter isn't case-sensitive.

    *)
  2. filters : FilterList.t option;
    (*

    A filter that specifies one or more global DB clusters to describe. Supported filters: db-cluster-id accepts cluster identifiers and cluster Amazon Resource Names (ARNs). The results list will only include information about the clusters identified by these ARNs.

    *)
  3. maxRecords : IntegerOptional.t option;
    (*

    The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so that you can retrieve the remaining results.

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

    An optional pagination token provided by a previous DescribeGlobalClusters request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

    *)
}
Sourceval make : ?globalClusterIdentifier:??? -> ?filters:??? -> ?maxRecords:??? -> ?marker:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of IntegerOptional.t | `List of [> `Structure of (string * [> `List of [> `String of String_.t ] list | `String of String_.t ]) list ] list | `String of GlobalClusterIdentifier.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