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

DescribeProcessingJobResponse

import type { DescribeProcessingJobResponse } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface DescribeProcessingJobResponse {
AppSpecification: AppSpecification;
AutoMLJobArn?: string | null;
CreationTime: Date | number;
Environment?: {
[key: string]: string | null | undefined;
}
| null;
ExitMessage?: string | null;
ExperimentConfig?: ExperimentConfig | null;
FailureReason?: string | null;
LastModifiedTime?: Date | number | null;
MonitoringScheduleArn?: string | null;
NetworkConfig?: NetworkConfig | null;
ProcessingEndTime?: Date | number | null;
ProcessingInputs?: ProcessingInput[] | null;
ProcessingJobArn: string;
ProcessingJobName: string;
ProcessingJobStatus: ProcessingJobStatus;
ProcessingOutputConfig?: ProcessingOutputConfig | null;
ProcessingResources: ProcessingResources;
ProcessingStartTime?: Date | number | null;
RoleArn?: string | null;
StoppingCondition?: ProcessingStoppingCondition | null;
TrainingJobArn?: string | null;
}

§Properties

§
AppSpecification: AppSpecification
[src]

Configures the processing job to run a specified container image.

§
AutoMLJobArn?: string | null
[src]

The ARN of an AutoML job associated with this processing job.

§
CreationTime: Date | number
[src]

The time at which the processing job was created.

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

The environment variables set in the Docker container.

§
ExitMessage?: string | null
[src]

An optional string, up to one KB in size, that contains metadata from the processing container when the processing job exits.

§
ExperimentConfig?: ExperimentConfig | null
[src]

The configuration information used to create an experiment.

§
FailureReason?: string | null
[src]

A string, up to one KB in size, that contains the reason a processing job failed, if it failed.

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

The time at which the processing job was last modified.

§
MonitoringScheduleArn?: string | null
[src]

The ARN of a monitoring schedule for an endpoint associated with this processing job.

§
NetworkConfig?: NetworkConfig | null
[src]

Networking options for a processing job.

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

The time at which the processing job completed.

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

The inputs for a processing job.

§
ProcessingJobArn: string
[src]

The Amazon Resource Name (ARN) of the processing job.

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

§
ProcessingJobStatus: ProcessingJobStatus
[src]

Provides the status of a processing job.

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

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

The time at which the processing job started.

§
RoleArn?: string | null
[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.

§
TrainingJobArn?: string | null
[src]

The ARN of a training job associated with this processing job.