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

PendingDeploymentSummary

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

The summary of an in-progress deployment when an endpoint is creating or updating with a new endpoint configuration.

interface PendingDeploymentSummary {
EndpointConfigName: string;
ProductionVariants?: PendingProductionVariantSummary[] | null;
ShadowProductionVariants?: PendingProductionVariantSummary[] | null;
StartTime?: Date | number | null;
}

§Properties

§
EndpointConfigName: string
[src]

The name of the endpoint configuration used in the deployment.

§
ProductionVariants?: PendingProductionVariantSummary[] | null
[src]

An array of "PendingProductionVariantSummary" objects, one for each model hosted behind this endpoint for the in-progress deployment.

§
ShadowProductionVariants?: PendingProductionVariantSummary[] | null
[src]

An array of "PendingProductionVariantSummary" objects, one for each model hosted behind this endpoint in shadow mode with production traffic replicated from the model specified on ProductionVariants for the in-progress deployment.

§
StartTime?: Date | number | null
[src]

The start time of the deployment.