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

DescribeInferenceExperimentResponse

import type { DescribeInferenceExperimentResponse } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface DescribeInferenceExperimentResponse {
Arn: string;
CompletionTime?: Date | number | null;
CreationTime?: Date | number | null;
DataStorageConfig?: InferenceExperimentDataStorageConfig | null;
Description?: string | null;
EndpointMetadata: EndpointMetadata;
KmsKey?: string | null;
LastModifiedTime?: Date | number | null;
ModelVariants: ModelVariantConfigSummary[];
Name: string;
RoleArn?: string | null;
Schedule?: InferenceExperimentSchedule | null;
ShadowModeConfig?: ShadowModeConfig | null;
StatusReason?: string | null;
}

§Properties

§
Arn: string
[src]

The ARN of the inference experiment being described.

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

The timestamp at which the inference experiment was completed.

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

The timestamp at which you created the inference experiment.

§

The Amazon S3 location and configuration for storing inference request and response data.

§
Description?: string | null
[src]

The description of the inference experiment.

§
EndpointMetadata: EndpointMetadata
[src]

The metadata of the endpoint on which the inference experiment ran.

§
KmsKey?: string | null
[src]

The Amazon Web Services Key Management Service (Amazon Web Services KMS) key that Amazon SageMaker uses to encrypt data on the storage volume attached to the ML compute instance that hosts the endpoint. For more information, see "CreateInferenceExperimentRequest$KmsKey".

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

The timestamp at which you last modified the inference experiment.

§

An array of ModelVariantConfigSummary objects. There is one for each variant in the inference experiment. Each ModelVariantConfigSummary object in the array describes the infrastructure configuration for deploying the corresponding variant.

§
Name: string
[src]

The name of the inference experiment.

§
RoleArn?: string | null
[src]

The ARN of the IAM role that Amazon SageMaker can assume to access model artifacts and container images, and manage Amazon SageMaker Inference endpoints for model deployment.

§

The duration for which the inference experiment ran or will run.

§
ShadowModeConfig?: ShadowModeConfig | null
[src]

The configuration of ShadowMode inference experiment type, which shows the production variant that takes all the inference requests, and the shadow variant to which Amazon SageMaker replicates a percentage of the inference requests. For the shadow variant it also shows the percentage of requests that Amazon SageMaker replicates.

§

The status of the inference experiment. The following are the possible statuses for an inference experiment:

  • Creating - Amazon SageMaker is creating your experiment.
  • Created - Amazon SageMaker has finished the creation of your experiment and will begin the experiment at the scheduled time.
  • Updating - When you make changes to your experiment, your experiment shows as updating.
  • Starting - Amazon SageMaker is beginning your experiment.
  • Running - Your experiment is in progress.
  • Stopping - Amazon SageMaker is stopping your experiment.
  • Completed - Your experiment has completed.
  • Cancelled - When you conclude your experiment early using the "StopInferenceExperiment" API, or if any operation fails with an unexpected error, it shows as cancelled.
§
StatusReason?: string | null
[src]

The error message or client-specified Reason from the "StopInferenceExperiment" API, that explains the status of the inference experiment.

§

The type of the inference experiment.