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

ProductionVariantSummary

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

Describes weight and capacities for a production variant associated with an endpoint. If you sent a request to the UpdateEndpointWeightsAndCapacities API and the endpoint status is Updating, you get different desired and current values.

interface ProductionVariantSummary {
CurrentInstanceCount?: number | null;
CurrentServerlessConfig?: ProductionVariantServerlessConfig | null;
CurrentWeight?: number | null;
DeployedImages?: DeployedImage[] | null;
DesiredInstanceCount?: number | null;
DesiredServerlessConfig?: ProductionVariantServerlessConfig | null;
DesiredWeight?: number | null;
VariantName: string;
VariantStatus?: ProductionVariantStatus[] | null;
}

§Properties

§
CurrentInstanceCount?: number | null
[src]

The number of instances associated with the variant.

§
CurrentServerlessConfig?: ProductionVariantServerlessConfig | null
[src]

The serverless configuration for the endpoint.

§
CurrentWeight?: number | null
[src]

The weight associated with the variant.

§
DeployedImages?: DeployedImage[] | null
[src]

An array of DeployedImage objects that specify the Amazon EC2 Container Registry paths of the inference images deployed on instances of this ProductionVariant.

§
DesiredInstanceCount?: number | null
[src]

The number of instances requested in the UpdateEndpointWeightsAndCapacities request.

§
DesiredServerlessConfig?: ProductionVariantServerlessConfig | null
[src]

The serverless configuration requested for the endpoint update.

§
DesiredWeight?: number | null
[src]

The requested weight, as specified in the UpdateEndpointWeightsAndCapacities request.

§
VariantName: string
[src]

The name of the variant.

§
VariantStatus?: ProductionVariantStatus[] | null
[src]

The endpoint variant status which describes the current deployment stage status or operational status.