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

DescribeEndpointConfigOutput

import type { DescribeEndpointConfigOutput } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface DescribeEndpointConfigOutput {
AsyncInferenceConfig?: AsyncInferenceConfig | null;
CreationTime: Date | number;
DataCaptureConfig?: DataCaptureConfig | null;
EndpointConfigArn: string;
EndpointConfigName: string;
ExplainerConfig?: ExplainerConfig | null;
KmsKeyId?: string | null;
ProductionVariants: ProductionVariant[];
ShadowProductionVariants?: ProductionVariant[] | null;
}

§Properties

§
AsyncInferenceConfig?: AsyncInferenceConfig | null
[src]

Returns the description of an endpoint configuration created using the CreateEndpointConfig API.

§
CreationTime: Date | number
[src]

A timestamp that shows when the endpoint configuration was created.

§
DataCaptureConfig?: DataCaptureConfig | null
[src]
§
EndpointConfigArn: string
[src]

The Amazon Resource Name (ARN) of the endpoint configuration.

§
EndpointConfigName: string
[src]

Name of the SageMaker endpoint configuration.

§
ExplainerConfig?: ExplainerConfig | null
[src]

The configuration parameters for an explainer.

§
KmsKeyId?: string | null
[src]

Amazon Web Services KMS key ID Amazon SageMaker uses to encrypt data when storing it on the ML storage volume attached to the instance.

§
ProductionVariants: ProductionVariant[]
[src]

An array of ProductionVariant objects, one for each model that you want to host at this endpoint.

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

An array of ProductionVariant objects, one for each model that you want to host at this endpoint in shadow mode with production traffic replicated from the model specified on ProductionVariants.