Values.CreateServiceEnvironmentRequestSourceCreates a service environment for running service jobs. Service environments define capacity limits for specific service types such as SageMaker Training jobs.
type nonrec t = {serviceEnvironmentName : String_.t;The name for the service environment. It can be up to 128 characters long and can contain letters, numbers, hyphens (-), and underscores (_).
*)serviceEnvironmentType : ServiceEnvironmentType.t;The type of service environment. For SageMaker Training jobs, specify SAGEMAKER_TRAINING.
*)state : ServiceEnvironmentState.t option;The state of the service environment. Valid values are ENABLED and DISABLED. The default value is ENABLED.
*)capacityLimits : CapacityLimits.t;The capacity limits for the service environment. The number of instances a job consumes is the total number of instances requested in the submit training job request resource configuration.
*)}val make :
?state:??? ->
?tags:??? ->
serviceEnvironmentName:String_.t ->
serviceEnvironmentType:ServiceEnvironmentType.t ->
capacityLimits:CapacityLimits.t ->
unit ->
t