Module Values_0.ClusterMetadataSource

Metadata information about a HyperPod cluster showing information about the cluster level operations, such as creating, updating, and deleting.

Sourcetype nonrec t = {
  1. failureMessage : String_.t option;
    (*

    An error message describing why the cluster level operation (such as creating, updating, or deleting) failed.

    *)
  2. eksRoleAccessEntries : EksRoleAccessEntries.t option;
    (*

    A list of Amazon EKS IAM role ARNs associated with the cluster. This is created by HyperPod on your behalf and only applies for EKS orchestrated clusters.

    *)
  3. slrAccessEntry : String_.t option;
    (*

    The Service-Linked Role (SLR) associated with the cluster. This is created by HyperPod on your behalf and only applies for EKS orchestrated clusters.

    *)
}
Sourceval make : ?failureMessage:??? -> ?eksRoleAccessEntries:??? -> ?slrAccessEntry:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `String of String_.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