Module Values_0.DeploymentConfigSource

The deployment configuration for an endpoint, which contains the desired deployment strategy and rollback configurations.

Sourcetype nonrec t = {
  1. blueGreenUpdatePolicy : BlueGreenUpdatePolicy.t option;
    (*

    Update policy for a blue/green deployment. If this update policy is specified, SageMaker creates a new fleet during the deployment while maintaining the old fleet. SageMaker flips traffic to the new fleet according to the specified traffic routing configuration. Only one update policy should be used in the deployment configuration. If no update policy is specified, SageMaker uses a blue/green deployment strategy with all at once traffic shifting by default.

    *)
  2. rollingUpdatePolicy : RollingUpdatePolicy.t option;
    (*

    Specifies a rolling deployment strategy for updating a SageMaker endpoint.

    *)
  3. autoRollbackConfiguration : AutoRollbackConfig.t option;
    (*

    Automatic rollback configuration for handling endpoint deployment failures and recovery.

    *)
}
Sourceval make : ?blueGreenUpdatePolicy:??? -> ?rollingUpdatePolicy:??? -> ?autoRollbackConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Integer of TerminationWaitInSeconds.t | `List of [> `Structure of (string * [> `String of AlarmName.t ]) list ] list | `Structure of (string * [> `Enum of string | `Integer of WaitIntervalInSeconds.t | `Structure of (string * [> `Enum of string | `Integer of CapacitySizeValue.t ]) list ]) 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