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

CreateSimulationJobRequest

import type { CreateSimulationJobRequest } from "https://aws-api.deno.dev/v0.4/services/robomaker.ts?docs=full";
interface CreateSimulationJobRequest {
clientRequestToken?: string | null;
compute?: Compute | null;
dataSources?: DataSourceConfig[] | null;
failureBehavior?: FailureBehavior | null;
iamRole: string;
loggingConfig?: LoggingConfig | null;
maxJobDurationInSeconds: number;
outputLocation?: OutputLocation | null;
robotApplications?: RobotApplicationConfig[] | null;
simulationApplications?: SimulationApplicationConfig[] | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
vpcConfig?: VPCConfig | null;
}

§Properties

§
clientRequestToken?: string | null
[src]

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

§
compute?: Compute | null
[src]

Compute information for the simulation job.

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

Specify data sources to mount read-only files from S3 into your simulation. These files are available under /opt/robomaker/datasources/data_source_name.

Note: There is a limit of 100 files and a combined size of 25GB for all DataSourceConfig objects.

§
failureBehavior?: FailureBehavior | null
[src]

The failure behavior the simulation job.

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

Fail: Stop the simulation job and terminate the instance.

§
iamRole: string
[src]

The IAM role name 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.

§
loggingConfig?: LoggingConfig | null
[src]

The logging configuration.

§
maxJobDurationInSeconds: number
[src]

The maximum simulation job duration in seconds (up to 14 days or 1,209,600 seconds. When maxJobDurationInSeconds is reached, the simulation job will status will transition to Completed.

§
outputLocation?: OutputLocation | null
[src]

Location for output files generated by the simulation job.

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

The robot application to use in the simulation job.

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

The simulation application to use in 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?: VPCConfig | null
[src]

If your simulation job accesses resources in a VPC, you provide this parameter identifying the list of security group IDs and subnet IDs. These must belong to the same VPC. You must provide at least one security group and one subnet ID.