Module Values.GetRunGroupResponseSource

Gets information about a run group and returns its metadata.

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

    The group's ARN.

    *)
  2. id : RunGroupId.t option;
    (*

    The group's ID.

    *)
  3. name : RunGroupName.t option;
    (*

    The group's name.

    *)
  4. maxCpus : GetRunGroupResponseMaxCpusInteger.t option;
    (*

    The group's maximum number of CPUs to use.

    *)
  5. maxRuns : GetRunGroupResponseMaxRunsInteger.t option;
    (*

    The maximum number of concurrent runs for the group.

    *)
  6. maxDuration : GetRunGroupResponseMaxDurationInteger.t option;
    (*

    The group's maximum run time in minutes.

    *)
  7. creationTime : RunGroupTimestamp.t option;
    (*

    When the group was created.

    *)
  8. tags : TagMap.t option;
    (*

    The group's tags.

    *)
  9. maxGpus : GetRunGroupResponseMaxGpusInteger.t option;
    (*

    The maximum GPUs that can be used by a run group.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ConflictException of ConflictException.t
  3. | `InternalServerException of InternalServerException.t
  4. | `RequestTimeoutException of RequestTimeoutException.t
  5. | `ResourceNotFoundException of ResourceNotFoundException.t
  6. | `ServiceQuotaExceededException of ServiceQuotaExceededException.t
  7. | `ThrottlingException of ThrottlingException.t
  8. | `ValidationException of ValidationException.t
  9. | `Unknown_operation_error of string * string option
]
Sourceval make : ?arn:??? -> ?id:??? -> ?name:??? -> ?maxCpus:??? -> ?maxRuns:??? -> ?maxDuration:??? -> ?creationTime:??? -> ?tags:??? -> ?maxGpus:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `RequestTimeoutException of RequestTimeoutException.t | `ResourceNotFoundException of ResourceNotFoundException.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 | `RequestTimeoutException of RequestTimeoutException.t | `ResourceNotFoundException of ResourceNotFoundException.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 * [> `Integer of GetRunGroupResponseMaxCpusInteger.t | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of RunGroupArn.t | `Timestamp of RunGroupTimestamp.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