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

PendingProductionVariantSummary

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

The production variant summary for a deployment when an endpoint is creating or updating with the "CreateEndpoint" or "UpdateEndpoint" operations. Describes the VariantStatus, weight and capacity for a production variant associated with an endpoint.

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

§Properties

§
AcceleratorType?: ProductionVariantAcceleratorType | null
[src]

The size of the Elastic Inference (EI) instance to use for the production variant. EI instances provide on-demand GPU computing for inference. For more information, see Using Elastic Inference in Amazon SageMaker.

§
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 this deployment, as specified in the endpoint configuration for the endpoint. The value is taken from the request to the "CreateEndpointConfig" operation.

§
DesiredServerlessConfig?: ProductionVariantServerlessConfig | null
[src]

The serverless configuration requested for this deployment, as specified in the endpoint configuration for the endpoint.

§
DesiredWeight?: number | null
[src]

The requested weight for the variant in this deployment, as specified in the endpoint configuration for the endpoint. The value is taken from the request to the "CreateEndpointConfig" operation.

§

The type of instances associated with the variant.

§
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.