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

CreateCompilationJobRequest

import type { CreateCompilationJobRequest } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface CreateCompilationJobRequest {
CompilationJobName: string;
InputConfig?: InputConfig | null;
ModelPackageVersionArn?: string | null;
OutputConfig: OutputConfig;
RoleArn: string;
StoppingCondition: StoppingCondition;
Tags?: Tag[] | null;
VpcConfig?: NeoVpcConfig | null;
}

§Properties

§
CompilationJobName: string
[src]

A name for the model compilation job. The name must be unique within the Amazon Web Services Region and within your Amazon Web Services account.

§
InputConfig?: InputConfig | null
[src]

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

§
ModelPackageVersionArn?: string | null
[src]

The Amazon Resource Name (ARN) of a versioned model package. Provide either a ModelPackageVersionArn or an InputConfig object in the request syntax. The presence of both objects in the CreateCompilationJob request will return an exception.

§
OutputConfig: OutputConfig
[src]

Provides information about the output location for the compiled model and the target device the model runs on.

§
RoleArn: string
[src]

The Amazon Resource Name (ARN) of an IAM role that enables Amazon SageMaker to perform tasks on your behalf.

During model compilation, Amazon SageMaker needs your permission to:

  • Read input data from an S3 bucket
  • Write model artifacts to an S3 bucket
  • Write logs to Amazon CloudWatch Logs
  • Publish metrics to Amazon CloudWatch

You grant permissions for all of these tasks to an IAM role. To pass this role to Amazon SageMaker, the caller of this API must have the iam:PassRole permission. For more information, see Amazon SageMaker Roles.

§
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.

§
Tags?: Tag[] | null
[src]

An array of key-value pairs. You can use tags to categorize your Amazon Web Services resources in different ways, for example, by purpose, owner, or environment. For more information, see Tagging Amazon Web Services Resources.

§
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.