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

DescribeEndpointOutput

import type { DescribeEndpointOutput } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface DescribeEndpointOutput {
AsyncInferenceConfig?: AsyncInferenceConfig | null;
CreationTime: Date | number;
DataCaptureConfig?: DataCaptureConfigSummary | null;
EndpointArn: string;
EndpointConfigName: string;
EndpointName: string;
EndpointStatus: EndpointStatus;
ExplainerConfig?: ExplainerConfig | null;
FailureReason?: string | null;
LastDeploymentConfig?: DeploymentConfig | null;
LastModifiedTime: Date | number;
PendingDeploymentSummary?: PendingDeploymentSummary | null;
ProductionVariants?: ProductionVariantSummary[] | null;
ShadowProductionVariants?: ProductionVariantSummary[] | 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 was created.

§
DataCaptureConfig?: DataCaptureConfigSummary | null
[src]
§
EndpointArn: string
[src]

The Amazon Resource Name (ARN) of the endpoint.

§
EndpointConfigName: string
[src]

The name of the endpoint configuration associated with this endpoint.

§
EndpointName: string
[src]

Name of the endpoint.

§
EndpointStatus: EndpointStatus
[src]

The status of the endpoint.

  • OutOfService: Endpoint is not available to take incoming requests.
  • Creating: "CreateEndpoint" is executing.
  • Updating: "UpdateEndpoint" or "UpdateEndpointWeightsAndCapacities" is executing.
  • SystemUpdating: Endpoint is undergoing maintenance and cannot be updated or deleted or re-scaled until it has completed. This maintenance operation does not change any customer-specified values such as VPC config, KMS encryption, model, instance type, or instance count.
  • RollingBack: Endpoint fails to scale up or down or change its variant weight and is in the process of rolling back to its previous configuration. Once the rollback completes, endpoint returns to an InService status. This transitional status only applies to an endpoint that has autoscaling enabled and is undergoing variant weight or capacity changes as part of an "UpdateEndpointWeightsAndCapacities" call or when the "UpdateEndpointWeightsAndCapacities" operation is called explicitly.
  • InService: Endpoint is available to process incoming requests.
  • Deleting: "DeleteEndpoint" is executing.
  • Failed: Endpoint could not be created, updated, or re-scaled. Use "DescribeEndpointOutput$FailureReason" for information about the failure. "DeleteEndpoint" is the only operation that can be performed on a failed endpoint.
§
ExplainerConfig?: ExplainerConfig | null
[src]

The configuration parameters for an explainer.

§
FailureReason?: string | null
[src]

If the status of the endpoint is Failed, the reason why it failed.

§
LastDeploymentConfig?: DeploymentConfig | null
[src]

The most recent deployment configuration for the endpoint.

§
LastModifiedTime: Date | number
[src]

A timestamp that shows when the endpoint was last modified.

§
PendingDeploymentSummary?: PendingDeploymentSummary | null
[src]

Returns the summary of an in-progress deployment. This field is only returned when the endpoint is creating or updating with a new endpoint configuration.

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

An array of "ProductionVariantSummary" objects, one for each model hosted behind this endpoint.

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

An array of "ProductionVariantSummary" 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.