Skip to content

aws.robomaker.describe_world_generation_job

Example SQL Queries

SELECT * FROM
aws.robomaker.describe_world_generation_job
WHERE
"job" = 'VALUE';

Description

Describes a world generation job.

Table Definition

Column NameColumn Data Type
job Required Input Column

The Amazon Resource Name (arn) of the world generation job to describe.

VARCHAR
_aws_profile Input Column

The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role.

STRUCT(
"type" VARCHAR,
"name" VARCHAR,
"account_id" VARCHAR,
"via_profile_name" VARCHAR,
"assumed_role_arn" VARCHAR,
"organization" STRUCT(
"account_name" VARCHAR,
"id" VARCHAR,
"tags" STRUCT(
"key" VARCHAR,
"value" VARCHAR
)[],
"master_account" STRUCT(
"id" VARCHAR,
"email" VARCHAR
),
"parents" STRUCT(
"type" VARCHAR,
"id" VARCHAR,
"name" VARCHAR,
"tags" STRUCT(
"key" VARCHAR,
"value" VARCHAR
)[]
)[]
)
)
Show child fields
_aws_profile.account_id

The AWS account id

_aws_profile.assumed_role_arn

The ARN of the assumed role

_aws_profile.name

The unique name of the profile.

_aws_profile.organization

Information about this profile's membership in the AWS organization.

Show child fields
_aws_profile.organization.account_name

The name of account speciifed by the organization

_aws_profile.organization.id

The organization id

_aws_profile.organization.master_account
Show child fields
_aws_profile.organization.master_account.email

The organization master account email address

_aws_profile.organization.master_account.id

The organization master account id

_aws_profile.organization.parents[]
Show child fields
_aws_profile.organization.parents[].id

The id of the parent

_aws_profile.organization.parents[].name

The name of the parent

_aws_profile.organization.parents[].tags[]
Show child fields
_aws_profile.organization.parents[].tags[].key
_aws_profile.organization.parents[].tags[].value
_aws_profile.organization.parents[].type

The type of parent can be an organization unit or a root

_aws_profile.organization.tags[]
Show child fields
_aws_profile.organization.tags[].key
_aws_profile.organization.tags[].value
_aws_profile.type

The type of profile, either 'credentials' or 'assumed_role'

_aws_profile.via_profile_name

This IAM role for this profile is assumed by first utilizing another profile with this name to obtain credentials.

_aws_region Input Column

The AWS region to use.

VARCHAR
arn

The Amazon Resource Name (ARN) of the world generation job.

VARCHAR
client_request_token

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

VARCHAR
created_at

The time, in milliseconds since the epoch, when the world generation job was created.

TIMESTAMP_S
failure_code

The failure code of the world generation job if it failed:

InternalServiceError

Internal service error.

LimitExceeded

The requested resource exceeds the maximum number allowed, or the number of concurrent stream requests exceeds the maximum number allowed.

ResourceNotFound

The specified resource could not be found.

RequestThrottled

The request was throttled.

InvalidInput

An input parameter in the request is not valid.

VARCHAR
failure_reason

The reason why the world generation job failed.

VARCHAR
finished_worlds_summary

Summary information about finished worlds.

STRUCT(
"finished_count" BIGINT,
"succeeded_worlds" VARCHAR[],
"failure_summary" STRUCT(
"total_failure_count" BIGINT,
"failures" STRUCT(
"failure_code" VARCHAR,
"sample_failure_reason" VARCHAR,
"failure_count" BIGINT
)[]
)
)
Show child fields
finished_worlds_summary.failure_summary

Information about worlds that failed.

Show child fields
finished_worlds_summary.failure_summary.failures[]
Show child fields
finished_worlds_summary.failure_summary.failures[].failure_code

The failure code of the world export job if it failed:

InternalServiceError

Internal service error.

LimitExceeded

The requested resource exceeds the maximum number allowed, or the number of concurrent stream requests exceeds the maximum number allowed.

ResourceNotFound

The specified resource could not be found.

RequestThrottled

The request was throttled.

InvalidInput

An input parameter in the request is not valid.

finished_worlds_summary.failure_summary.failures[].failure_count

The number of failed worlds.

finished_worlds_summary.failure_summary.failures[].sample_failure_reason

The sample reason why the world failed. World errors are aggregated. A sample is used as the sampleFailureReason.

finished_worlds_summary.failure_summary.total_failure_count

The total number of failures.

finished_worlds_summary.finished_count

The total number of finished worlds.

finished_worlds_summary.succeeded_worlds[]
status

The status of the world generation job:

Pending

The world generation job request is pending.

Running

The world generation job is running.

Completed

The world generation job completed.

Failed

The world generation job failed. See failureCode for more information.

PartialFailed

Some worlds did not generate.

Canceled

The world generation job was cancelled.

Canceling

The world generation job is being cancelled.

VARCHAR
tags

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

MAP(VARCHAR, VARCHAR)
template

The Amazon Resource Name (arn) of the world template.

VARCHAR
world_count

Information about the world count.

STRUCT(
"floorplan_count" BIGINT,
"interior_count_per_floorplan" BIGINT
)
Show child fields
world_count.floorplan_count

The number of unique floorplans.

world_count.interior_count_per_floorplan

The number of unique interiors per floorplan.

world_tags

A map that contains tag keys and tag values that are attached to the generated worlds.

MAP(VARCHAR, VARCHAR)