Skip to main content

simulation_applications

Creates, updates, deletes or gets a simulation_application resource or lists simulation_applications in a region

Overview

Namesimulation_applications
TypeResource
DescriptionThis schema is for testing purpose only.
Idaws.robomaker.simulation_applications

Fields

NameDatatypeDescription
arnstring
namestringThe name of the simulation application.
current_revision_idstringThe current revision id.
rendering_engineobjectThe rendering engine for the simulation application.
robot_software_suiteobjectThe robot software suite used by the simulation application.
simulation_software_suiteobjectThe simulation software suite used by the simulation application.
sourcesarrayThe sources of the simulation application.
environmentstringThe URI of the Docker image for the robot application.
tagsobjectA key-value pair to associate with a resource.
regionstringAWS region.

Methods

NameAccessible byRequired Params
create_resourceINSERTRobotSoftwareSuite, SimulationSoftwareSuite, region
delete_resourceDELETEdata__Identifier, region
update_resourceUPDATEdata__Identifier, data__PatchDocument, region
list_resourcesSELECTregion
get_resourceSELECTdata__Identifier, region

SELECT examples

Gets all simulation_applications in a region.

SELECT
region,
arn,
name,
current_revision_id,
rendering_engine,
robot_software_suite,
simulation_software_suite,
sources,
environment,
tags
FROM aws.robomaker.simulation_applications
WHERE region = 'us-east-1';

Gets all properties from an individual simulation_application.

SELECT
region,
arn,
name,
current_revision_id,
rendering_engine,
robot_software_suite,
simulation_software_suite,
sources,
environment,
tags
FROM aws.robomaker.simulation_applications
WHERE region = 'us-east-1' AND data__Identifier = '<Arn>';

INSERT example

Use the following StackQL query and manifest file to create a new simulation_application resource, using stack-deploy.

/*+ create */
INSERT INTO aws.robomaker.simulation_applications (
RobotSoftwareSuite,
SimulationSoftwareSuite,
region
)
SELECT
'{{ RobotSoftwareSuite }}',
'{{ SimulationSoftwareSuite }}',
'{{ region }}';

DELETE example

/*+ delete */
DELETE FROM aws.robomaker.simulation_applications
WHERE data__Identifier = '<Arn>'
AND region = 'us-east-1';

Permissions

To operate on the simulation_applications resource, the following permissions are required:

Create

robomaker:CreateSimulationApplication,
robomaker:TagResource,
robomaker:UntagResource,
ecr:BatchGetImage,
ecr:GetAuthorizationToken,
ecr:BatchCheckLayerAvailability,
ecr-public:GetAuthorizationToken,
sts:GetServiceBearerToken

Read

robomaker:DescribeSimulationApplication

Update

robomaker:TagResource,
robomaker:UntagResource,
robomaker:UpdateSimulationApplication,
ecr:BatchGetImage,
ecr:GetAuthorizationToken,
ecr:BatchCheckLayerAvailability,
ecr-public:GetAuthorizationToken

Delete

robomaker:DescribeSimulationApplication,
robomaker:DeleteSimulationApplication

List

robomaker:ListSimulationApplications