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

DescribeCompilationJobResponse

import type { DescribeCompilationJobResponse } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface DescribeCompilationJobResponse {
CompilationEndTime?: Date | number | null;
CompilationJobArn: string;
CompilationJobName: string;
CompilationJobStatus: CompilationJobStatus;
CompilationStartTime?: Date | number | null;
CreationTime: Date | number;
FailureReason: string;
InferenceImage?: string | null;
InputConfig: InputConfig;
LastModifiedTime: Date | number;
ModelArtifacts: ModelArtifacts;
ModelDigests?: ModelDigests | null;
ModelPackageVersionArn?: string | null;
OutputConfig: OutputConfig;
RoleArn: string;
StoppingCondition: StoppingCondition;
VpcConfig?: NeoVpcConfig | null;
}

§Properties

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

The time when the model compilation job on a compilation job instance ended. For a successful or stopped job, this is when the job's model artifacts have finished uploading. For a failed job, this is when Amazon SageMaker detected that the job failed.

§
CompilationJobArn: string
[src]

The Amazon Resource Name (ARN) of the model compilation job.

§
CompilationJobName: string
[src]

The name of the model compilation job.

§
CompilationJobStatus: CompilationJobStatus
[src]

The status of the model compilation job.

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

The time when the model compilation job started the CompilationJob instances.

You are billed for the time between this timestamp and the timestamp in the "DescribeCompilationJobResponse$CompilationEndTime" field. In Amazon CloudWatch Logs, the start time might be later than this time. That's because it takes time to download the compilation job, which depends on the size of the compilation job container.

§
CreationTime: Date | number
[src]

The time that the model compilation job was created.

§
FailureReason: string
[src]

If a model compilation job failed, the reason it failed.

§
InferenceImage?: string | null
[src]

The inference image to use when compiling a model. Specify an image only if the target device is a cloud instance.

§
InputConfig: InputConfig
[src]

Information about the location in Amazon S3 of the input model artifacts, the name and shape of the expected data inputs, and the framework in which the model was trained.

§
LastModifiedTime: Date | number
[src]

The time that the status of the model compilation job was last modified.

§
ModelArtifacts: ModelArtifacts
[src]

Information about the location in Amazon S3 that has been configured for storing the model artifacts used in the compilation job.

§
ModelDigests?: ModelDigests | null
[src]

Provides a BLAKE2 hash value that identifies the compiled model artifacts in Amazon S3.

§
ModelPackageVersionArn?: string | null
[src]

The Amazon Resource Name (ARN) of the versioned model package that was provided to SageMaker Neo when you initiated a compilation job.

§
OutputConfig: OutputConfig
[src]

Information about the output location for the compiled model and the target device that the model runs on.

§
RoleArn: string
[src]

The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker assumes to perform the model compilation job.

§
StoppingCondition: StoppingCondition
[src]

Specifies a limit to how long a model compilation job can run. When the job reaches the time limit, Amazon SageMaker ends the compilation job. Use this API to cap model training costs.

§
VpcConfig?: NeoVpcConfig | null
[src]

A "VpcConfig" object that specifies the VPC that you want your compilation job to connect to. Control access to your models by configuring the VPC. For more information, see Protect Compilation Jobs by Using an Amazon Virtual Private Cloud.