Module Values.GetClusterOutputSource

The output of a cluster.

Sourcetype nonrec t = {
  1. identifier : ClusterId.t option;
    (*

    The ID of the retrieved cluster.

    *)
  2. arn : ClusterArn.t option;
    (*

    The ARN of the retrieved cluster.

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

    The status of the retrieved cluster.

    *)
  4. creationTime : ClusterCreationTime.t option;
    (*

    The time of when the cluster was created.

    *)
  5. deletionProtectionEnabled : DeletionProtectionEnabled.t option;
    (*

    Whether deletion protection is enabled in this cluster.

    *)
  6. multiRegionProperties : MultiRegionProperties.t option;
    (*

    Returns the current multi-Region cluster configuration, including witness region and linked cluster information.

    *)
  7. tags : TagMap.t option;
  8. encryptionDetails : EncryptionDetails.t option;
    (*

    The current encryption configuration details for the cluster.

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

    The connection endpoint for the cluster.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?identifier:??? -> ?arn:??? -> ?status:??? -> ?creationTime:??? -> ?deletionProtectionEnabled:??? -> ?multiRegionProperties:??? -> ?tags:??? -> ?encryptionDetails:??? -> ?endpoint:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of DeletionProtectionEnabled.t | `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ClusterId.t | `Structure of (string * [> `Enum of string | `List of [> `String of ClusterArn.t ] list | `String of Region.t ]) list | `Timestamp of ClusterCreationTime.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