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

SimulationJob

import type { SimulationJob } from "https://aws-api.deno.dev/v0.3/services/robomaker.ts?docs=full";

Information about a simulation job.

interface SimulationJob {
arn?: string | null;
clientRequestToken?: string | null;
compute?: ComputeResponse | null;
dataSources?: DataSource[] | null;
failureBehavior?: FailureBehavior | null;
failureCode?: SimulationJobErrorCode | null;
failureReason?: string | null;
iamRole?: string | null;
lastStartedAt?: Date | number | null;
lastUpdatedAt?: Date | number | null;
loggingConfig?: LoggingConfig | null;
maxJobDurationInSeconds?: number | null;
name?: string | null;
networkInterface?: NetworkInterface | null;
outputLocation?: OutputLocation | null;
robotApplications?: RobotApplicationConfig[] | null;
simulationApplications?: SimulationApplicationConfig[] | null;
simulationTimeMillis?: number | null;
status?: SimulationJobStatus | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
vpcConfig?: VPCConfigResponse | null;
}

§Properties

§
arn?: string | null
[src]

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

§
clientRequestToken?: string | null
[src]

A unique identifier for this SimulationJob request.

§
compute?: ComputeResponse | null
[src]

Compute information for the simulation job

§
dataSources?: DataSource[] | null
[src]

The data sources for the simulation job.

§
failureBehavior?: FailureBehavior | null
[src]

The failure behavior the simulation job.

Continue: Leaves the host running for its maximum timeout duration after a 4XX error code.

Fail: Stop the simulation job and terminate the instance.

§
failureCode?: SimulationJobErrorCode | null
[src]

The failure code of the simulation job if it failed.

§
failureReason?: string | null
[src]

The reason why the simulation job failed.

§
iamRole?: string | null
[src]

The IAM role that allows the simulation instance to call the AWS APIs that are specified in its associated policies on your behalf. This is how credentials are passed in to your simulation job.

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

The time, in milliseconds since the epoch, when the simulation job was last started.

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

The time, in milliseconds since the epoch, when the simulation job was last updated.

§
loggingConfig?: LoggingConfig | null
[src]

The logging configuration.

§
maxJobDurationInSeconds?: number | null
[src]

The maximum simulation job duration in seconds. The value must be 8 days (691,200 seconds) or less.

§
name?: string | null
[src]

The name of the simulation job.

§
networkInterface?: NetworkInterface | null
[src]

Information about a network interface.

§
outputLocation?: OutputLocation | null
[src]

Location for output files generated by the simulation job.

§
robotApplications?: RobotApplicationConfig[] | null
[src]

A list of robot applications.

§
simulationApplications?: SimulationApplicationConfig[] | null
[src]

A list of simulation applications.

§
simulationTimeMillis?: number | null
[src]

The simulation job execution duration in milliseconds.

§
status?: SimulationJobStatus | null
[src]

Status of the simulation job.

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

A map that contains tag keys and tag values that are attached to the simulation job.

§
vpcConfig?: VPCConfigResponse | null
[src]

VPC configuration information.