Module Values.SageMakerEndpointSource

Specifies the configuration for a Amazon SageMaker endpoint.

Sourcetype nonrec t = {
  1. initialInstanceCount : InstanceCount.t;
    (*

    The number of Amazon EC2 compute instances to deploy for initial endpoint creation.

    *)
  2. instanceType : InstanceType.t;
    (*

    The Amazon EC2 compute instance type to deploy for hosting the model.

    *)
  3. 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.

    *)
  4. 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.

    *)
  5. vpc : VpcConfig.t option;
    (*

    The VPC configuration for the endpoint.

    *)
}
Sourceval context_ : string
Sourceval make : ?kmsEncryptionKey:??? -> ?vpc:??? -> initialInstanceCount:InstanceCount.t -> instanceType:InstanceType.t -> executionRole:RoleArn.t -> unit -> t
Sourceval 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 ]
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