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

ShadowModeConfig

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

The configuration of ShadowMode inference experiment type, which specifies a production variant to take all the inference requests, and a shadow variant to which Amazon SageMaker replicates a percentage of the inference requests. For the shadow variant it also specifies the percentage of requests that Amazon SageMaker replicates.

interface ShadowModeConfig {
ShadowModelVariants: ShadowModelVariantConfig[];
SourceModelVariantName: string;
}

§Properties

§
ShadowModelVariants: ShadowModelVariantConfig[]
[src]

List of shadow variant configurations.

§
SourceModelVariantName: string
[src]

The name of the production variant, which takes all the inference requests.