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

CreateProcessingJobRequest

import type { CreateProcessingJobRequest } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface CreateProcessingJobRequest {
AppSpecification: AppSpecification;
Environment?: {
[key: string]: string | null | undefined;
}
| null;
ExperimentConfig?: ExperimentConfig | null;
NetworkConfig?: NetworkConfig | null;
ProcessingInputs?: ProcessingInput[] | null;
ProcessingJobName: string;
ProcessingOutputConfig?: ProcessingOutputConfig | null;
ProcessingResources: ProcessingResources;
RoleArn: string;
StoppingCondition?: ProcessingStoppingCondition | null;
Tags?: Tag[] | null;
}

§Properties

§
AppSpecification: AppSpecification
[src]

Configures the processing job to run a specified Docker container image.

§
Environment?: {
[key: string]: string | null | undefined;
}
| null
[src]

The environment variables to set in the Docker container. Up to 100 key and values entries in the map are supported.

§
ExperimentConfig?: ExperimentConfig | null
[src]
§
NetworkConfig?: NetworkConfig | null
[src]

Networking options for a processing job, such as whether to allow inbound and outbound network calls to and from processing containers, and the VPC subnets and security groups to use for VPC-enabled processing jobs.

§
ProcessingInputs?: ProcessingInput[] | null
[src]

An array of inputs configuring the data to download into the processing container.

§
ProcessingJobName: string
[src]

The name of the processing job. The name must be unique within an Amazon Web Services Region in the Amazon Web Services account.

§
ProcessingOutputConfig?: ProcessingOutputConfig | null
[src]

Output configuration for the processing job.

§
ProcessingResources: ProcessingResources
[src]

Identifies the resources, ML compute instances, and ML storage volumes to deploy for a processing job. In distributed training, you specify more than one instance.

§
RoleArn: string
[src]

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

§
StoppingCondition?: ProcessingStoppingCondition | null
[src]

The time limit for how long the processing job is allowed to run.

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

(Optional) An array of key-value pairs. For more information, see Using Cost Allocation Tags in the Amazon Web Services Billing and Cost Management User Guide.