Module Values_0.NodeAdditionResultSource

Information about a node that was successfully added to the cluster.

Sourcetype nonrec t = {
  1. nodeLogicalId : ClusterNodeLogicalId.t option;
    (*

    A unique identifier assigned to the node that can be used to track its provisioning status through the DescribeClusterNode operation.

    *)
  2. instanceGroupName : ClusterInstanceGroupName.t option;
    (*

    The name of the instance group to which the node was added.

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

    The current status of the node. Possible values include Pending, Running, Failed, ShuttingDown, SystemUpdating, DeepHealthCheckInProgress, and NotFound.

    *)
  4. availabilityZones : ClusterAvailabilityZones.t option;
    (*

    The availability zones associated with the successfully added node.

    *)
  5. instanceTypes : ClusterInstanceTypes.t option;
    (*

    The instance types associated with the successfully added node.

    *)
}
Sourceval make : ?nodeLogicalId:??? -> ?instanceGroupName:??? -> ?status:??? -> ?availabilityZones:??? -> ?instanceTypes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string | `String of ClusterAvailabilityZone.t ] list | `String of ClusterNodeLogicalId.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