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

DescribeSimulationJobResponse

import type { DescribeSimulationJobResponse } from "https://aws-api.deno.dev/v0.4/services/robomaker.ts?docs=full";
interface DescribeSimulationJobResponse {
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]

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.

§
failureReason?: string | null
[src]

Details about why the simulation job failed. For more information about troubleshooting, see Troubleshooting.

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

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

The network interface information for the simulation job.

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

The status of the simulation job.

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

The list of all tags added to the specified simulation job.

§
vpcConfig?: VPCConfigResponse | null
[src]

The VPC configuration.