Module Values.CreateClusterResponseSource

Placeholder documentation for CreateClusterResponse

Sourcetype nonrec t = {
  1. arn : string option;
    (*

    The ARN of this Cluster. It is automatically assigned when the Cluster is created.

    *)
  2. channelIds : string list option;
  3. clusterType : ClusterType.t option;
    (*

    The hardware type for the Cluster

    *)
  4. id : string option;
    (*

    The ID of the Cluster. Unique in the AWS account. The ID is the resource-id portion of the ARN.

    *)
  5. instanceRoleArn : string option;
    (*

    The ARN of the IAM role for the Node in this Cluster. Any Nodes that are associated with this Cluster assume this role. The role gives permissions to the operations that you expect these Node to perform.

    *)
  6. name : string option;
    (*

    The name that you specified for the Cluster.

    *)
  7. networkSettings : ClusterNetworkSettings.t option;
    (*

    Network settings that connect the Nodes in the Cluster to one or more of the Networks that the Cluster is associated with.

    *)
  8. state : ClusterState.t option;
    (*

    The current state of the Cluster.

    *)
}
Sourcetype nonrec error = [
  1. | `BadGatewayException of BadGatewayException.t
  2. | `BadRequestException of BadRequestException.t
  3. | `ConflictException of ConflictException.t
  4. | `ForbiddenException of ForbiddenException.t
  5. | `GatewayTimeoutException of GatewayTimeoutException.t
  6. | `InternalServerErrorException of InternalServerErrorException.t
  7. | `TooManyRequestsException of TooManyRequestsException.t
  8. | `Unknown_operation_error of string * string option
]
Sourceval make : ?arn:??? -> ?channelIds:??? -> ?clusterType:??? -> ?id:??? -> ?instanceRoleArn:??? -> ?name:??? -> ?networkSettings:??? -> ?state:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadGatewayException of BadGatewayException.t | `BadRequestException of BadRequestException.t | `ConflictException of ConflictException.t | `ForbiddenException of ForbiddenException.t | `GatewayTimeoutException of GatewayTimeoutException.t | `InternalServerErrorException of InternalServerErrorException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadGatewayException of BadGatewayException.t | `BadRequestException of BadRequestException.t | `ConflictException of ConflictException.t | `ForbiddenException of ForbiddenException.t | `GatewayTimeoutException of GatewayTimeoutException.t | `InternalServerErrorException of InternalServerErrorException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of string ] list | `String of string | `Structure of (string * [> `List of [> `Structure of (string * [> `String of string ]) list ] list | `String of string ]) list ]) 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