Values.SageMakerEndpointSourceSpecifies the configuration for a Amazon SageMaker endpoint.
type nonrec t = {initialInstanceCount : InstanceCount.t;The number of Amazon EC2 compute instances to deploy for initial endpoint creation.
*)instanceType : InstanceType.t;The Amazon EC2 compute instance type to deploy for hosting the model.
*)executionRole : RoleArn.t;The ARN of the IAM role that Amazon SageMaker can assume to access model artifacts and docker image for deployment on Amazon EC2 compute instances or for batch transform jobs.
*)kmsEncryptionKey : KmsKeyId.t option;The Amazon Web Services KMS key that Amazon SageMaker uses to encrypt data on the storage volume attached to the Amazon EC2 compute instance that hosts the endpoint.
*)vpc : VpcConfig.t option;The VPC configuration for the endpoint.
*)}val make :
?kmsEncryptionKey:??? ->
?vpc:??? ->
initialInstanceCount:InstanceCount.t ->
instanceType:InstanceType.t ->
executionRole:RoleArn.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Integer of InstanceCount.t
| `String of InstanceType.t
| `Structure of
(string * [> `List of [> `String of SubnetId.t ] list ]) list ])
list ]