Module Values.CreateClusterOutputSource

The output of a created cluster.

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

    The ID of the created cluster.

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

    The ARN of the created cluster.

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

    The status of the created cluster.

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

    The time of when created the cluster.

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

    The multi-Region cluster configuration details that were set during cluster creation

    *)
  6. encryptionDetails : EncryptionDetails.t option;
    (*

    The encryption configuration for the cluster that was specified during the creation process, including the KMS key identifier and encryption state.

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

    Whether deletion protection is enabled on this cluster.

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

    The connection endpoint for the created cluster.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ConflictException of ConflictException.t
  3. | `InternalServerException of InternalServerException.t
  4. | `ServiceQuotaExceededException of ServiceQuotaExceededException.t
  5. | `ThrottlingException of ThrottlingException.t
  6. | `ValidationException of ValidationException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?identifier:??? -> ?arn:??? -> ?status:??? -> ?creationTime:??? -> ?multiRegionProperties:??? -> ?encryptionDetails:??? -> ?deletionProtectionEnabled:??? -> ?endpoint:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.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 | `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.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 | `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