Values.ResourceConfigSourceInformation about the EC2 resources that are used to train the model.
type nonrec t = {instanceCount : ResourceConfigInstanceCountInteger.t option;The number of resources that are used to train the model.
*)instanceType : InstanceType.t;The instance type that is used to train the model.
*)volumeSizeInGB : ResourceConfigVolumeSizeInGBInteger.t;The volume size of the instance that is used to train the model. Please see EC2 volume limit for volume size limitations on different instance types.
*)}val make :
?instanceCount:??? ->
instanceType:InstanceType.t ->
volumeSizeInGB:ResourceConfigVolumeSizeInGBInteger.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of ResourceConfigInstanceCountInteger.t ])
list ]