Module Values_0.AIRecommendationDeploymentConfigurationSource

The deployment configuration for a recommendation.

Sourcetype nonrec t = {
  1. s3 : AIRecommendationDeploymentS3ChannelList.t option;
    (*

    The Amazon S3 data channels for the deployment.

    *)
  2. imageUri : String_.t option;
    (*

    The URI of the container image for the deployment.

    *)
  3. instanceType : AIRecommendationInstanceType.t option;
    (*

    The recommended instance type for the deployment.

    *)
  4. instanceCount : AIRecommendationInstanceCount.t option;
    (*

    The recommended number of instances for the deployment.

    *)
  5. copyCountPerInstance : AIRecommendationCopyCountPerInstance.t option;
    (*

    The number of model copies per instance.

    *)
  6. environmentVariables : EnvironmentMap.t option;
    (*

    The environment variables for the deployment.

    *)
}
Sourceval make : ?s3:??? -> ?imageUri:??? -> ?instanceType:??? -> ?instanceCount:??? -> ?copyCountPerInstance:??? -> ?environmentVariables:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of AIRecommendationInstanceCount.t | `List of [> `Structure of (string * [> `String of AIChannelName.t ]) list ] list | `Map of ([> `String of EnvironmentKey.t ] * [> `String of EnvironmentValue.t ]) list | `String of String_.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