Module Values_0.ClusterSummarySource

Lists a summary of the properties of a SageMaker HyperPod cluster.

Sourcetype nonrec t = {
  1. clusterArn : ClusterArn.t option;
    (*

    The Amazon Resource Name (ARN) of the SageMaker HyperPod cluster.

    *)
  2. clusterName : ClusterName.t option;
    (*

    The name of the SageMaker HyperPod cluster.

    *)
  3. creationTime : Timestamp.t option;
    (*

    The time when the SageMaker HyperPod cluster is created.

    *)
  4. clusterStatus : ClusterStatus.t option;
    (*

    The status of the SageMaker HyperPod cluster.

    *)
  5. trainingPlanArns : TrainingPlanArns.t option;
    (*

    A list of Amazon Resource Names (ARNs) of the training plans associated with this cluster. For more information about how to reserve GPU capacity for your SageMaker HyperPod clusters using Amazon SageMaker Training Plan, see CreateTrainingPlan .

    *)
}
Sourceval make : ?clusterArn:??? -> ?clusterName:??? -> ?creationTime:??? -> ?clusterStatus:??? -> ?trainingPlanArns:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of TrainingPlanArn.t ] list | `String of ClusterArn.t | `Timestamp of Timestamp.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