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

CreateSimulationJobResponse

import type { CreateSimulationJobResponse } from "https://aws-api.deno.dev/v0.4/services/robomaker.ts?docs=full";
interface CreateSimulationJobResponse {
arn?: string | null;
clientRequestToken?: string | null;
compute?: ComputeResponse | null;
dataSources?: DataSource[] | null;
failureBehavior?: FailureBehavior | null;
failureCode?: SimulationJobErrorCode | null;
iamRole?: string | null;
lastStartedAt?: Date | number | null;
lastUpdatedAt?: Date | number | null;
loggingConfig?: LoggingConfig | null;
maxJobDurationInSeconds?: number | 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]

Unique, case-sensitive identifier that you provide to ensure the idempotency of the 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 for the simulation job.

§
failureCode?: SimulationJobErrorCode | null
[src]

The failure code of the simulation job if it failed:

InternalServiceError: Internal service error.

RobotApplicationCrash: Robot application exited abnormally.

SimulationApplicationCrash: Simulation application exited abnormally.

BadPermissionsRobotApplication: Robot application bundle could not be downloaded.

BadPermissionsSimulationApplication: Simulation application bundle could not be downloaded.

BadPermissionsS3Output: Unable to publish outputs to customer-provided S3 bucket.

BadPermissionsCloudwatchLogs: Unable to publish logs to customer-provided CloudWatch Logs resource.

SubnetIpLimitExceeded: Subnet IP limit exceeded.

ENILimitExceeded: ENI limit exceeded.

BadPermissionsUserCredentials: Unable to use the Role provided.

InvalidBundleRobotApplication: Robot bundle cannot be extracted (invalid format, bundling error, or other issue).

InvalidBundleSimulationApplication: Simulation bundle cannot be extracted (invalid format, bundling error, or other issue).

RobotApplicationVersionMismatchedEtag: Etag for RobotApplication does not match value during version creation.

SimulationApplicationVersionMismatchedEtag: Etag for SimulationApplication does not match value during version creation.

§
iamRole?: string | null
[src]

The IAM role that allows the simulation job to call the AWS APIs that are specified in its associated policies on your behalf.

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

§
outputLocation?: OutputLocation | null
[src]

Simulation job output files location.

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

The robot application used by the simulation job.

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

The simulation application used by the simulation job.

§
simulationTimeMillis?: number | null
[src]

The simulation job execution duration in milliseconds.

§
status?: SimulationJobStatus | null
[src]

The status of the simulation job.

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

The list of all tags added to the simulation job.

§
vpcConfig?: VPCConfigResponse | null
[src]

Information about the vpc configuration.