Module Values_2.UpdateInferenceExperimentRequestSource

Updates an inference experiment that you created. The status of the inference experiment has to be either Created, Running. For more information on the status of an inference experiment, see DescribeInferenceExperiment.

Sourcetype nonrec t = {
  1. name : Values_1.InferenceExperimentName.t;
    (*

    The name of the inference experiment to be updated.

    *)
  2. schedule : Values_1.InferenceExperimentSchedule.t option;
    (*

    The duration for which the inference experiment will run. If the status of the inference experiment is Created, then you can update both the start and end dates. If the status of the inference experiment is Running, then you can update only the end date.

    *)
  3. description : Values_1.InferenceExperimentDescription.t option;
    (*

    The description of the inference experiment.

    *)
  4. modelVariants : Values_1.ModelVariantConfigList.t option;
    (*

    An array of ModelVariantConfig objects. There is one for each variant, whose infrastructure configuration you want to update.

    *)
  5. dataStorageConfig : Values_1.InferenceExperimentDataStorageConfig.t option;
    (*

    The Amazon S3 location and configuration for storing inference request and response data.

    *)
  6. shadowModeConfig : Values_1.ShadowModeConfig.t option;
    (*

    The configuration of ShadowMode inference experiment type. Use this field to specify a production variant which takes all the inference requests, and a shadow variant to which Amazon SageMaker replicates a percentage of the inference requests. For the shadow variant also specify the percentage of requests that Amazon SageMaker replicates.

    *)
}
Sourceval context_ : string
Sourceval make : ?schedule:??? -> ?description:??? -> ?modelVariants:??? -> ?dataStorageConfig:??? -> ?shadowModeConfig:??? -> name:Values_1.InferenceExperimentName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of Values_0.ModelName.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string | `Integer of int ]) list ]) list ]) list ] list | `String of Values_1.InferenceExperimentName.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Integer of Values_0.Percentage.t | `String of string ]) list ] list | `String of Values_0.DestinationS3Uri.t | `Structure of (string * [> `List of [> `String of string ] list ]) list | `Timestamp of Values_0.Timestamp.t ]) 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