Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DeploymentConfig

import type { DeploymentConfig } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";

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

interface DeploymentConfig {
AutoRollbackConfiguration?: AutoRollbackConfig | null;
BlueGreenUpdatePolicy: BlueGreenUpdatePolicy;
}

§Properties

§
AutoRollbackConfiguration?: AutoRollbackConfig | null
[src]

Automatic rollback configuration for handling endpoint deployment failures and recovery.

§
BlueGreenUpdatePolicy: BlueGreenUpdatePolicy
[src]

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.