README
@datafire/amazonaws_robomaker
Client library for AWS RoboMaker
Installation and Usage
npm install --save @datafire/amazonaws_robomaker
let amazonaws_robomaker = require('@datafire/amazonaws_robomaker').create({
accessKeyId: "",
secretAccessKey: "",
region: ""
});
.then(data => {
console.log(data);
});
Description
This section provides documentation for the AWS RoboMaker API operations.
Actions
BatchDeleteWorlds
amazonaws_robomaker.BatchDeleteWorlds({
"worlds": []
}, context)
Input
- input
object
- worlds required
array
: A list of Amazon Resource Names (arns) that correspond to worlds to delete.- items Arn
- worlds required
Output
- output BatchDeleteWorldsResponse
BatchDescribeSimulationJob
amazonaws_robomaker.BatchDescribeSimulationJob({
"jobs": []
}, context)
Input
- input
object
- jobs required
array
: A list of Amazon Resource Names (ARNs) of simulation jobs to describe.- items Arn
- jobs required
Output
CancelDeploymentJob
amazonaws_robomaker.CancelDeploymentJob({
"job": ""
}, context)
Input
- input
object
- job required
string
: The deployment job ARN to cancel.
- job required
Output
- output CancelDeploymentJobResponse
CancelSimulationJob
amazonaws_robomaker.CancelSimulationJob({
"job": ""
}, context)
Input
- input
object
- job required
string
: The simulation job ARN to cancel.
- job required
Output
- output CancelSimulationJobResponse
CancelSimulationJobBatch
amazonaws_robomaker.CancelSimulationJobBatch({
"batch": ""
}, context)
Input
- input
object
- batch required
string
: The id of the batch to cancel.
- batch required
Output
CancelWorldExportJob
amazonaws_robomaker.CancelWorldExportJob({
"job": ""
}, context)
Input
- input
object
- job required
string
: The Amazon Resource Name (arn) of the world export job to cancel.
- job required
Output
- output CancelWorldExportJobResponse
CancelWorldGenerationJob
amazonaws_robomaker.CancelWorldGenerationJob({
"job": ""
}, context)
Input
- input
object
- job required
string
: The Amazon Resource Name (arn) of the world generator job to cancel.
- job required
Output
CreateDeploymentJob
amazonaws_robomaker.CreateDeploymentJob({
"clientRequestToken": "",
"fleet": "",
"deploymentApplicationConfigs": []
}, context)
Input
- input
object
- tags
object
: A map that contains tag keys and tag values that are attached to the deployment job. - clientRequestToken required
string
: Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. - deploymentApplicationConfigs required
array
: The deployment application configuration. - deploymentConfig
object
: Information about a deployment configuration.- concurrentDeploymentPercentage
- downloadConditionFile
- bucket required
- etag
- key required
- failureThresholdPercentage
- robotDeploymentTimeoutInSeconds
- fleet required
string
: The Amazon Resource Name (ARN) of the fleet to deploy.
- tags
Output
- output CreateDeploymentJobResponse
CreateFleet
amazonaws_robomaker.CreateFleet({
"name": ""
}, context)
Input
- input
object
- tags
object
: A map that contains tag keys and tag values that are attached to the fleet. - name required
string
: The name of the fleet.
- tags
Output
- output CreateFleetResponse
CreateRobot
amazonaws_robomaker.CreateRobot({
"name": "",
"architecture": "",
"greengrassGroupId": ""
}, context)
Input
- input
object
- tags
object
: A map that contains tag keys and tag values that are attached to the robot. - architecture required
string
(values: X86_64, ARM64, ARMHF): The target architecture of the robot. - greengrassGroupId required
string
: The Greengrass group id. - name required
string
: The name for the robot.
- tags
Output
- output CreateRobotResponse
CreateRobotApplication
amazonaws_robomaker.CreateRobotApplication({
"name": "",
"sources": [],
"robotSoftwareSuite": {}
}, context)
Input
- input
object
- tags
object
: A map that contains tag keys and tag values that are attached to the robot application. - name required
string
: The name of the robot application. - robotSoftwareSuite required
object
: Information about a robot software suite (ROS distribution).- name
- version
- sources required
array
: The sources of the robot application.- items SourceConfig
- tags
Output
CreateRobotApplicationVersion
amazonaws_robomaker.CreateRobotApplicationVersion({
"application": ""
}, context)
Input
- input
object
- application required
string
: The application information for the robot application. - currentRevisionId
string
: The current revision id for the robot application. If you provide a value and it matches the latest revision ID, a new version will be created.
- application required
Output
CreateSimulationApplication
amazonaws_robomaker.CreateSimulationApplication({
"name": "",
"sources": [],
"simulationSoftwareSuite": {},
"robotSoftwareSuite": {}
}, context)
Input
- input
object
- tags
object
: A map that contains tag keys and tag values that are attached to the simulation application. - name required
string
: The name of the simulation application. - renderingEngine
object
: Information about a rendering engine.- name
- version
- robotSoftwareSuite required
object
: Information about a robot software suite (ROS distribution).- name
- version
- simulationSoftwareSuite required
object
: Information about a simulation software suite.- name
- version
- sources required
array
: The sources of the simulation application.- items SourceConfig
- tags
Output
CreateSimulationApplicationVersion
amazonaws_robomaker.CreateSimulationApplicationVersion({
"application": ""
}, context)
Input
- input
object
- application required
string
: The application information for the simulation application. - currentRevisionId
string
: The current revision id for the simulation application. If you provide a value and it matches the latest revision ID, a new version will be created.
- application required
Output
CreateSimulationJob
amazonaws_robomaker.CreateSimulationJob({
"maxJobDurationInSeconds": 0,
"iamRole": ""
}, context)
Input
- input
object
- tags
object
: A map that contains tag keys and tag values that are attached to the simulation job. - clientRequestToken
string
: Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. - compute
object
: Compute information for the simulation job.- simulationUnitLimit
- dataSources
array
:Specify data sources to mount read-only files from S3 into your simulation. These files are available under
/opt/robomaker/datasources/data_source_name
.There is a limit of 100 files and a combined size of 25GB for all
DataSourceConfig
objects.- items DataSourceConfig
- failureBehavior
string
(values: Fail, Continue):The failure behavior the simulation job.
- Continue
-
Restart the simulation job in the same host instance.
- Fail
-
Stop the simulation job and terminate the instance.
- iamRole required
string
: 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
object
: The logging configuration.- recordAllRosTopics
- maxJobDurationInSeconds required
integer
: The maximum simulation job duration in seconds (up to 14 days or 1,209,600 seconds. WhenmaxJobDurationInSeconds
is reached, the simulation job will status will transition toCompleted
. - outputLocation
object
: The output location.- s3Bucket
- s3Prefix
- robotApplications
array
: The robot application to use in the simulation job.- items RobotApplicationConfig
- simulationApplications
array
: The simulation application to use in the simulation job. - vpcConfig
object
: 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 two subnet IDs.- assignPublicIp
- securityGroups
- items NonEmptyString
- subnets
- items NonEmptyString
- tags
Output
- output CreateSimulationJobResponse
CreateWorldExportJob
amazonaws_robomaker.CreateWorldExportJob({
"worlds": [],
"outputLocation": {},
"iamRole": ""
}, context)
Input
- input
object
- tags
object
: A map that contains tag keys and tag values that are attached to the world export job. - clientRequestToken
string
: Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. - iamRole required
string
: The IAM role that the world export process uses to access the Amazon S3 bucket and put the export. - outputLocation required
object
: The output location.- s3Bucket
- s3Prefix
- worlds required
array
: A list of Amazon Resource Names (arns) that correspond to worlds to export.- items Arn
- tags
Output
- output CreateWorldExportJobResponse
CreateWorldGenerationJob
amazonaws_robomaker.CreateWorldGenerationJob({
"template": "",
"worldCount": {}
}, context)
Input
- input
object
- tags
object
: A map that contains tag keys and tag values that are attached to the world generator job. - clientRequestToken
string
: Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. - template required
string
: The Amazon Resource Name (arn) of the world template describing the worlds you want to create. - worldCount required
object
:The number of worlds that will be created. You can configure the number of unique floorplans and the number of unique interiors for each floor plan. For example, if you want 1 world with 20 unique interiors, you set
floorplanCount = 1
andinteriorCountPerFloorplan = 20
. This will result in 20 worlds (floorplanCount
*interiorCountPerFloorplan)
.If you set
floorplanCount = 4
andinteriorCountPerFloorplan = 5
, there will be 20 worlds with 5 unique floor plans.- floorplanCount
- interiorCountPerFloorplan
- worldTags
object
: A map that contains tag keys and tag values that are attached to the generated worlds.
- tags
Output
CreateWorldTemplate
amazonaws_robomaker.CreateWorldTemplate({}, context)
Input
- input
object
- tags
object
: A map that contains tag keys and tag values that are attached to the world template. - clientRequestToken
string
: Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. - name
string
: The name of the world template. - templateBody
string
: The world template body. - templateLocation
object
: Information about a template location.- s3Bucket
- s3Key
- tags
Output
- output CreateWorldTemplateResponse
DeleteFleet
amazonaws_robomaker.DeleteFleet({
"fleet": ""
}, context)
Input
- input
object
- fleet required
string
: The Amazon Resource Name (ARN) of the fleet.
- fleet required
Output
- output DeleteFleetResponse
DeleteRobot
amazonaws_robomaker.DeleteRobot({
"robot": ""
}, context)
Input
- input
object
- robot required
string
: The Amazon Resource Name (ARN) of the robot.
- robot required
Output
- output DeleteRobotResponse
DeleteRobotApplication
amazonaws_robomaker.DeleteRobotApplication({
"application": ""
}, context)
Input
- input
object
- application required
string
: The Amazon Resource Name (ARN) of the the robot application. - applicationVersion
string
: The version of the robot application to delete.
- application required
Output
DeleteSimulationApplication
amazonaws_robomaker.DeleteSimulationApplication({
"application": ""
}, context)
Input
- input
object
- application required
string
: The application information for the simulation application to delete. - applicationVersion
string
: The version of the simulation application to delete.
- application required
Output
DeleteWorldTemplate
amazonaws_robomaker.DeleteWorldTemplate({
"template": ""
}, context)
Input
- input
object
- template required
string
: The Amazon Resource Name (arn) of the world template you want to delete.
- template required
Output
- output DeleteWorldTemplateResponse
DeregisterRobot
amazonaws_robomaker.DeregisterRobot({
"fleet": "",
"robot": ""
}, context)
Input
- input
object
- fleet required
string
: The Amazon Resource Name (ARN) of the fleet. - robot required
string
: The Amazon Resource Name (ARN) of the robot.
- fleet required
Output
- output DeregisterRobotResponse
DescribeDeploymentJob
amazonaws_robomaker.DescribeDeploymentJob({
"job": ""
}, context)
Input
- input
object
- job required
string
: The Amazon Resource Name (ARN) of the deployment job.
- job required
Output
DescribeFleet
amazonaws_robomaker.DescribeFleet({
"fleet": ""
}, context)
Input
- input
object
- fleet required
string
: The Amazon Resource Name (ARN) of the fleet.
- fleet required
Output
- output DescribeFleetResponse
DescribeRobot
amazonaws_robomaker.DescribeRobot({
"robot": ""
}, context)
Input
- input
object
- robot required
string
: The Amazon Resource Name (ARN) of the robot to be described.
- robot required
Output
- output DescribeRobotResponse
DescribeRobotApplication
amazonaws_robomaker.DescribeRobotApplication({
"application": ""
}, context)
Input
- input
object
- application required
string
: The Amazon Resource Name (ARN) of the robot application. - applicationVersion
string
: The version of the robot application to describe.
- application required
Output
DescribeSimulationApplication
amazonaws_robomaker.DescribeSimulationApplication({
"application": ""
}, context)
Input
- input
object
- application required
string
: The application information for the simulation application. - applicationVersion
string
: The version of the simulation application to describe.
- application required
Output
DescribeSimulationJob
amazonaws_robomaker.DescribeSimulationJob({
"job": ""
}, context)
Input
- input
object
- job required
string
: The Amazon Resource Name (ARN) of the simulation job to be described.
- job required
Output
DescribeSimulationJobBatch
amazonaws_robomaker.DescribeSimulationJobBatch({
"batch": ""
}, context)
Input
- input
object
- batch required
string
: The id of the batch to describe.
- batch required
Output
DescribeWorld
amazonaws_robomaker.DescribeWorld({
"world": ""
}, context)
Input
- input
object
- world required
string
: The Amazon Resource Name (arn) of the world you want to describe.
- world required
Output
- output DescribeWorldResponse
DescribeWorldExportJob
amazonaws_robomaker.DescribeWorldExportJob({
"job": ""
}, context)
Input
- input
object
- job required
string
: The Amazon Resource Name (arn) of the world export job to describe.
- job required
Output
DescribeWorldGenerationJob
amazonaws_robomaker.DescribeWorldGenerationJob({
"job": ""
}, context)
Input
- input
object
- job required
string
: The Amazon Resource Name (arn) of the world generation job to describe.
- job required
Output
DescribeWorldTemplate
amazonaws_robomaker.DescribeWorldTemplate({
"template": ""
}, context)
Input
- input
object
- template required
string
: The Amazon Resource Name (arn) of the world template you want to describe.
- template required
Output
GetWorldTemplateBody
amazonaws_robomaker.GetWorldTemplateBody({}, context)
Input
- input
object
- generationJob
string
: The Amazon Resource Name (arn) of the world generator job. - template
string
: The Amazon Resource Name (arn) of the world template.
- generationJob
Output
- output GetWorldTemplateBodyResponse
ListDeploymentJobs
amazonaws_robomaker.ListDeploymentJobs({}, context)
Input
- input
object
- maxResults
string
- nextToken
string
- filters
array
:Optional filters to limit results.
The filter names
status
andfleetName
are supported. When filtering, you must use the complete value of the filtered item. You can use up to three filters, but they must be for the same named item. For example, if you are looking for items with the statusInProgress
or the statusPending
.- items Filter
- maxResults
integer
: When this parameter is used,ListDeploymentJobs
only returnsmaxResults
results in a single page along with anextToken
response element. The remaining results of the initial request can be seen by sending anotherListDeploymentJobs
request with the returnednextToken
value. This value can be between 1 and 200. If this parameter is not used, thenListDeploymentJobs
returns up to 200 results and anextToken
value if applicable. - nextToken
string
: If the previous paginated request did not return all of the remaining results, the response object'snextToken
parameter value is set to a token. To retrieve the next set of results, callListDeploymentJobs
again and assign that token to the request object'snextToken
parameter. If there are no remaining results, the previous response object's NextToken parameter is set to null.
- maxResults
Output
- output ListDeploymentJobsResponse
ListFleets
amazonaws_robomaker.ListFleets({}, context)
Input
- input
object
- maxResults
string
- nextToken
string
- filters
array
:Optional filters to limit results.
The filter name
name
is supported. When filtering, you must use the complete value of the filtered item. You can use up to three filters.- items Filter
- maxResults
integer
: When this parameter is used,ListFleets
only returnsmaxResults
results in a single page along with anextToken
response element. The remaining results of the initial request can be seen by sending anotherListFleets
request with the returnednextToken
value. This value can be between 1 and 200. If this parameter is not used, thenListFleets
returns up to 200 results and anextToken
value if applicable. - nextToken
string
:If the previous paginated request did not return all of the remaining results, the response object's
nextToken
parameter value is set to a token. To retrieve the next set of results, callListFleets
again and assign that token to the request object'snextToken
parameter. If there are no remaining results, the previous response object's NextToken parameter is set to null.This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.
- maxResults
Output
- output ListFleetsResponse
ListRobotApplications
amazonaws_robomaker.ListRobotApplications({}, context)
Input
- input
object
- maxResults
string
- nextToken
string
- filters
array
:Optional filters to limit results.
The filter name
name
is supported. When filtering, you must use the complete value of the filtered item. You can use up to three filters.- items Filter
- maxResults
integer
: When this parameter is used,ListRobotApplications
only returnsmaxResults
results in a single page along with anextToken
response element. The remaining results of the initial request can be seen by sending anotherListRobotApplications
request with the returnednextToken
value. This value can be between 1 and 100. If this parameter is not used, thenListRobotApplications
returns up to 100 results and anextToken
value if applicable. - nextToken
string
: If the previous paginated request did not return all of the remaining results, the response object'snextToken
parameter value is set to a token. To retrieve the next set of results, callListRobotApplications
again and assign that token to the request object'snextToken
parameter. If there are no remaining results, the previous response object's NextToken parameter is set to null. - versionQualifier
string
: The version qualifier of the robot application.
- maxResults
Output
ListRobots
amazonaws_robomaker.ListRobots({}, context)
Input
- input
object
- maxResults
string
- nextToken
string
- filters
array
:Optional filters to limit results.
The filter names
status
andfleetName
are supported. When filtering, you must use the complete value of the filtered item. You can use up to three filters, but they must be for the same named item. For example, if you are looking for items with the statusRegistered
or the statusAvailable
.- items Filter
- maxResults
integer
: When this parameter is used,ListRobots
only returnsmaxResults
results in a single page along with anextToken
response element. The remaining results of the initial request can be seen by sending anotherListRobots
request with the returnednextToken
value. This value can be between 1 and 200. If this parameter is not used, thenListRobots
returns up to 200 results and anextToken
value if applicable. - nextToken
string
: If the previous paginated request did not return all of the remaining results, the response object'snextToken
parameter value is set to a token. To retrieve the next set of results, callListRobots
again and assign that token to the request object'snextToken
parameter. If there are no remaining results, the previous response object's NextToken parameter is set to null.
- maxResults
Output
- output ListRobotsResponse
ListSimulationApplications
amazonaws_robomaker.ListSimulationApplications({}, context)
Input
- input
object
- maxResults
string
- nextToken
string
- filters
array
:Optional list of filters to limit results.
The filter name
name
is supported. When filtering, you must use the complete value of the filtered item. You can use up to three filters.- items Filter
- maxResults
integer
: When this parameter is used,ListSimulationApplications
only returnsmaxResults
results in a single page along with anextToken
response element. The remaining results of the initial request can be seen by sending anotherListSimulationApplications
request with the returnednextToken
value. This value can be between 1 and 100. If this parameter is not used, thenListSimulationApplications
returns up to 100 results and anextToken
value if applicable. - nextToken
string
: If the previous paginated request did not return all of the remaining results, the response object'snextToken
parameter value is set to a token. To retrieve the next set of results, callListSimulationApplications
again and assign that token to the request object'snextToken
parameter. If there are no remaining results, the previous response object's NextToken parameter is set to null. - versionQualifier
string
: The version qualifier of the simulation application.
- maxResults
Output
ListSimulationJobBatches
amazonaws_robomaker.ListSimulationJobBatches({}, context)
Input
- input
object
- maxResults
string
- nextToken
string
- filters
array
: Optional filters to limit results.- items Filter
- maxResults
integer
: When this parameter is used,ListSimulationJobBatches
only returnsmaxResults
results in a single page along with anextToken
response element. The remaining results of the initial request can be seen by sending anotherListSimulationJobBatches
request with the returnednextToken
value. - nextToken
string
: If the previous paginated request did not return all of the remaining results, the response object'snextToken
parameter value is set to a token. To retrieve the next set of results, callListSimulationJobBatches
again and assign that token to the request object'snextToken
parameter. If there are no remaining results, the previous response object's NextToken parameter is set to null.
- maxResults
Output
ListSimulationJobs
amazonaws_robomaker.ListSimulationJobs({}, context)
Input
- input
object
- maxResults
string
- nextToken
string
- filters
array
:Optional filters to limit results.
The filter names
status
andsimulationApplicationName
androbotApplicationName
are supported. When filtering, you must use the complete value of the filtered item. You can use up to three filters, but they must be for the same named item. For example, if you are looking for items with the statusPreparing
or the statusRunning
.- items Filter
- maxResults
integer
: When this parameter is used,ListSimulationJobs
only returnsmaxResults
results in a single page along with anextToken
response element. The remaining results of the initial request can be seen by sending anotherListSimulationJobs
request with the returnednextToken
value. This value can be between 1 and 1000. If this parameter is not used, thenListSimulationJobs
returns up to 1000 results and anextToken
value if applicable. - nextToken
string
: If the previous paginated request did not return all of the remaining results, the response object'snextToken
parameter value is set to a token. To retrieve the next set of results, callListSimulationJobs
again and assign that token to the request object'snextToken
parameter. If there are no remaining results, the previous response object's NextToken parameter is set to null.
- maxResults
Output
- output ListSimulationJobsResponse
ListWorldExportJobs
amazonaws_robomaker.ListWorldExportJobs({}, context)
Input
- input
object
- maxResults
string
- nextToken
string
- filters
array
: Optional filters to limit results. You can usegenerationJobId
andtemplateId
.- items Filter
- maxResults
integer
: When this parameter is used,ListWorldExportJobs
only returnsmaxResults
results in a single page along with anextToken
response element. The remaining results of the initial request can be seen by sending anotherListWorldExportJobs
request with the returnednextToken
value. This value can be between 1 and 100. If this parameter is not used, thenListWorldExportJobs
returns up to 100 results and anextToken
value if applicable. - nextToken
string
: If the previous paginated request did not return all of the remaining results, the response object'snextToken
parameter value is set to a token. To retrieve the next set of results, callListWorldExportJobs
again and assign that token to the request object'snextToken
parameter. If there are no remaining results, the previous response object's NextToken parameter is set to null.
- maxResults
Output
- output ListWorldExportJobsResponse
ListWorldGenerationJobs
amazonaws_robomaker.ListWorldGenerationJobs({}, context)
Input
- input
object
- maxResults
string
- nextToken
string
- filters
array
: Optional filters to limit results. You can usestatus
andtemplateId
.- items Filter
- maxResults
integer
: When this parameter is used,ListWorldGeneratorJobs
only returnsmaxResults
results in a single page along with anextToken
response element. The remaining results of the initial request can be seen by sending anotherListWorldGeneratorJobs
request with the returnednextToken
value. This value can be between 1 and 100. If this parameter is not used, thenListWorldGeneratorJobs
returns up to 100 results and anextToken
value if applicable. - nextToken
string
: If the previous paginated request did not return all of the remaining results, the response object'snextToken
parameter value is set to a token. To retrieve the next set of results, callListWorldGenerationJobsRequest
again and assign that token to the request object'snextToken
parameter. If there are no remaining results, the previous response object's NextToken parameter is set to null.
- maxResults
Output
ListWorldTemplates
amazonaws_robomaker.ListWorldTemplates({}, context)
Input
- input
object
- maxResults
string
- nextToken
string
- maxResults
integer
: When this parameter is used,ListWorldTemplates
only returnsmaxResults
results in a single page along with anextToken
response element. The remaining results of the initial request can be seen by sending anotherListWorldTemplates
request with the returnednextToken
value. This value can be between 1 and 100. If this parameter is not used, thenListWorldTemplates
returns up to 100 results and anextToken
value if applicable. - nextToken
string
: If the previous paginated request did not return all of the remaining results, the response object'snextToken
parameter value is set to a token. To retrieve the next set of results, callListWorldTemplates
again and assign that token to the request object'snextToken
parameter. If there are no remaining results, the previous response object's NextToken parameter is set to null.
- maxResults
Output
- output ListWorldTemplatesResponse
ListWorlds
amazonaws_robomaker.ListWorlds({}, context)
Input
- input
object
- maxResults
string
- nextToken
string
- filters
array
: Optional filters to limit results. You can usestatus
.- items Filter
- maxResults
integer
: When this parameter is used,ListWorlds
only returnsmaxResults
results in a single page along with anextToken
response element. The remaining results of the initial request can be seen by sending anotherListWorlds
request with the returnednextToken
value. This value can be between 1 and 100. If this parameter is not used, thenListWorlds
returns up to 100 results and anextToken
value if applicable. - nextToken
string
: If the previous paginated request did not return all of the remaining results, the response object'snextToken
parameter value is set to a token. To retrieve the next set of results, callListWorlds
again and assign that token to the request object'snextToken
parameter. If there are no remaining results, the previous response object's NextToken parameter is set to null.
- maxResults
Output
- output ListWorldsResponse
RegisterRobot
amazonaws_robomaker.RegisterRobot({
"fleet": "",
"robot": ""
}, context)
Input
- input
object
- fleet required
string
: The Amazon Resource Name (ARN) of the fleet. - robot required
string
: The Amazon Resource Name (ARN) of the robot.
- fleet required
Output
- output RegisterRobotResponse
RestartSimulationJob
amazonaws_robomaker.RestartSimulationJob({
"job": ""
}, context)
Input
- input
object
- job required
string
: The Amazon Resource Name (ARN) of the simulation job.
- job required
Output
- output RestartSimulationJobResponse
StartSimulationJobBatch
amazonaws_robomaker.StartSimulationJobBatch({
"createSimulationJobRequests": []
}, context)
Input
- input
object
- tags
object
: A map that contains tag keys and tag values that are attached to the deployment job batch. - batchPolicy
object
: Information about the batch policy.- maxConcurrency
- timeoutInSeconds
- clientRequestToken
string
: Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. - createSimulationJobRequests required
array
: A list of simulation job requests to create in the batch.- items SimulationJobRequest
- tags
Output
SyncDeploymentJob
amazonaws_robomaker.SyncDeploymentJob({
"clientRequestToken": "",
"fleet": ""
}, context)
Input
- input
object
- clientRequestToken required
string
: Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. - fleet required
string
: The target fleet for the synchronization.
- clientRequestToken required
Output
- output SyncDeploymentJobResponse
ListTagsForResource
amazonaws_robomaker.ListTagsForResource({
"resourceArn": ""
}, context)
Input
- input
object
- resourceArn required
string
- resourceArn required
Output
- output ListTagsForResourceResponse
TagResource
amazonaws_robomaker.TagResource({
"resourceArn": "",
"tags": {}
}, context)
Input
- input
object
- resourceArn required
string
- tags required
object
: A map that contains tag keys and tag values that are attached to the resource.
- resourceArn required
Output
- output TagResourceResponse
UntagResource
amazonaws_robomaker.UntagResource({
"resourceArn": "",
"tagKeys": []
}, context)
Input
- input
object
- resourceArn required
string
- tagKeys required
array
- resourceArn required
Output
- output UntagResourceResponse
UpdateRobotApplication
amazonaws_robomaker.UpdateRobotApplication({
"application": "",
"sources": [],
"robotSoftwareSuite": {}
}, context)
Input
- input
object
- application required
string
: The application information for the robot application. - currentRevisionId
string
: The revision id for the robot application. - robotSoftwareSuite required
object
: Information about a robot software suite (ROS distribution).- name
- version
- sources required
array
: The sources of the robot application.- items SourceConfig
- application required
Output
UpdateSimulationApplication
amazonaws_robomaker.UpdateSimulationApplication({
"application": "",
"sources": [],
"simulationSoftwareSuite": {},
"robotSoftwareSuite": {}
}, context)
Input
- input
object
- application required
string
: The application information for the simulation application. - currentRevisionId
string
: The revision id for the robot application. - renderingEngine
object
: Information about a rendering engine.- name
- version
- robotSoftwareSuite required
object
: Information about a robot software suite (ROS distribution).- name
- version
- simulationSoftwareSuite required
object
: Information about a simulation software suite.- name
- version
- sources required
array
: The sources of the simulation application.- items SourceConfig
- application required
Output
UpdateWorldTemplate
amazonaws_robomaker.UpdateWorldTemplate({
"template": ""
}, context)
Input
- input
object
- name
string
: The name of the template. - template required
string
: The Amazon Resource Name (arn) of the world template to update. - templateBody
string
: The world template body. - templateLocation
object
: Information about a template location.- s3Bucket
- s3Key
- name
Output
- output UpdateWorldTemplateResponse
Definitions
Architecture
- Architecture
string
(values: X86_64, ARM64, ARMHF)
Arn
- Arn
string
Arns
- Arns
array
- items Arn
BatchDeleteWorldsRequest
- BatchDeleteWorldsRequest
object
- worlds required
- items Arn
- worlds required
BatchDeleteWorldsResponse
- BatchDeleteWorldsResponse
object
- unprocessedWorlds
- items Arn
- unprocessedWorlds
BatchDescribeSimulationJobRequest
- BatchDescribeSimulationJobRequest
object
- jobs required
- items Arn
- jobs required
BatchDescribeSimulationJobResponse
- BatchDescribeSimulationJobResponse
object
- jobs
- items SimulationJob
- unprocessedJobs
- items Arn
- jobs
BatchPolicy
- BatchPolicy
object
: Information about the batch policy.- maxConcurrency
- timeoutInSeconds
BatchTimeoutInSeconds
- BatchTimeoutInSeconds
integer
Boolean
- Boolean
boolean
BoxedBoolean
- BoxedBoolean
boolean
CancelDeploymentJobRequest
- CancelDeploymentJobRequest
object
- job required
CancelDeploymentJobResponse
- CancelDeploymentJobResponse
object
CancelSimulationJobBatchRequest
- CancelSimulationJobBatchRequest
object
- batch required
CancelSimulationJobBatchResponse
- CancelSimulationJobBatchResponse
object
CancelSimulationJobRequest
- CancelSimulationJobRequest
object
- job required
CancelSimulationJobResponse
- CancelSimulationJobResponse
object
CancelWorldExportJobRequest
- CancelWorldExportJobRequest
object
- job required
CancelWorldExportJobResponse
- CancelWorldExportJobResponse
object
CancelWorldGenerationJobRequest
- CancelWorldGenerationJobRequest
object
- job required
CancelWorldGenerationJobResponse
- CancelWorldGenerationJobResponse
object
ClientRequestToken
- ClientRequestToken
string
Command
- Command
string
Compute
- Compute
object
: Compute information for the simulation job.- simulationUnitLimit
ComputeResponse
- ComputeResponse
object
: Compute information for the simulation job- simulationUnitLimit
ConcurrentDeploymentException
CreateDeploymentJobRequest
- CreateDeploymentJobRequest
object
- tags
- clientRequestToken required
- deploymentApplicationConfigs required
- deploymentConfig
- concurrentDeploymentPercentage
- downloadConditionFile
- bucket required
- etag
- key required
- failureThresholdPercentage
- robotDeploymentTimeoutInSeconds
- fleet required
CreateDeploymentJobResponse
- CreateDeploymentJobResponse
object
- tags
- arn
- createdAt
- deploymentApplicationConfigs
- deploymentConfig
- concurrentDeploymentPercentage
- downloadConditionFile
- bucket required
- etag
- key required
- failureThresholdPercentage
- robotDeploymentTimeoutInSeconds
- failureCode
- failureReason
- fleet
- status
CreateFleetRequest
- CreateFleetRequest
object
- tags
- name required
CreateFleetResponse
- CreateFleetResponse
object
- tags
- arn
- createdAt
- name
CreateRobotApplicationRequest
- CreateRobotApplicationRequest
object
- tags
- name required
- robotSoftwareSuite required
- name
- version
- sources required
- items SourceConfig
CreateRobotApplicationResponse
- CreateRobotApplicationResponse
object
- tags
- arn
- lastUpdatedAt
- name
- revisionId
- robotSoftwareSuite
- name
- version
- sources
- items Source
- version
CreateRobotApplicationVersionRequest
- CreateRobotApplicationVersionRequest
object
- application required
- currentRevisionId
CreateRobotApplicationVersionResponse
- CreateRobotApplicationVersionResponse
object
- arn
- lastUpdatedAt
- name
- revisionId
- robotSoftwareSuite
- name
- version
- sources
- items Source
- version
CreateRobotRequest
- CreateRobotRequest
object
- tags
- architecture required
- greengrassGroupId required
- name required
CreateRobotResponse
- CreateRobotResponse
object
- tags
- architecture
- arn
- createdAt
- greengrassGroupId
- name
CreateSimulationApplicationRequest
- CreateSimulationApplicationRequest
object
- tags
- name required
- renderingEngine
- name
- version
- robotSoftwareSuite required
- name
- version
- simulationSoftwareSuite required
- name
- version
- sources required
- items SourceConfig
CreateSimulationApplicationResponse
- CreateSimulationApplicationResponse
object
- tags
- arn
- lastUpdatedAt
- name
- renderingEngine
- name
- version
- revisionId
- robotSoftwareSuite
- name
- version
- simulationSoftwareSuite
- name
- version
- sources
- items Source
- version
CreateSimulationApplicationVersionRequest
- CreateSimulationApplicationVersionRequest
object
- application required
- currentRevisionId
CreateSimulationApplicationVersionResponse
- CreateSimulationApplicationVersionResponse
object
- arn
- lastUpdatedAt
- name
- renderingEngine
- name
- version
- revisionId
- robotSoftwareSuite
- name
- version
- simulationSoftwareSuite
- name
- version
- sources
- items Source
- version
CreateSimulationJobRequest
- CreateSimulationJobRequest
object
- tags
- clientRequestToken
- compute
- simulationUnitLimit
- dataSources
- items DataSourceConfig
- failureBehavior
- iamRole required
- loggingConfig
- recordAllRosTopics required
- maxJobDurationInSeconds required
- outputLocation
- s3Bucket
- s3Prefix
- robotApplications
- items RobotApplicationConfig
- simulationApplications
- vpcConfig
- assignPublicIp
- securityGroups
- items NonEmptyString
- subnets required
- items NonEmptyString
CreateSimulationJobRequests
- CreateSimulationJobRequests
array
- items SimulationJobRequest
CreateSimulationJobResponse
- CreateSimulationJobResponse
object
- tags
- arn
- clientRequestToken
- compute
- simulationUnitLimit
- dataSources
- items DataSource
- failureBehavior
- failureCode
- iamRole
- lastStartedAt
- lastUpdatedAt
- loggingConfig
- recordAllRosTopics required
- maxJobDurationInSeconds
- outputLocation
- s3Bucket
- s3Prefix
- robotApplications
- items RobotApplicationConfig
- simulationApplications
- simulationTimeMillis
- status
- vpcConfig
- assignPublicIp
- securityGroups
- items NonEmptyString
- subnets
- items NonEmptyString
- vpcId
CreateWorldExportJobRequest
- CreateWorldExportJobRequest
object
- tags
- clientRequestToken
- iamRole required
- outputLocation required OutputLocation
- worlds required
- items Arn
CreateWorldExportJobResponse
- CreateWorldExportJobResponse
object
- tags
- arn
- clientRequestToken
- createdAt
- failureCode
- iamRole
- outputLocation OutputLocation
- status
CreateWorldGenerationJobRequest
- CreateWorldGenerationJobRequest
object
- tags
- clientRequestToken
- template required
- worldCount required
- floorplanCount
- interiorCountPerFloorplan
- worldTags
CreateWorldGenerationJobResponse
- CreateWorldGenerationJobResponse
object
- tags
- arn
- clientRequestToken
- createdAt
- failureCode
- status
- template
- worldCount
- floorplanCount
- interiorCountPerFloorplan
- worldTags
CreateWorldTemplateRequest
- CreateWorldTemplateRequest
object
- tags
- clientRequestToken
- name
- templateBody
- templateLocation
- s3Bucket required
- s3Key required
CreateWorldTemplateResponse
- CreateWorldTemplateResponse
object
- tags
- arn
- clientRequestToken
- createdAt
- name
CreatedAt
- CreatedAt
string
DataSource
- DataSource
object
: Information about a data source.- name
- s3Bucket
- s3Keys
- items S3KeyOutput
DataSourceConfig
- DataSourceConfig
object
: Information about a data source.- name required
- s3Bucket required
- s3Keys required
- items S3Key
DataSourceConfigs
- DataSourceConfigs
array
- items DataSourceConfig
DataSourceNames
- DataSourceNames
array
- items Name
DataSources
- DataSources
array
- items DataSource
DeleteFleetRequest
- DeleteFleetRequest
object
- fleet required
DeleteFleetResponse
- DeleteFleetResponse
object
DeleteRobotApplicationRequest
- DeleteRobotApplicationRequest
object
- application required
- applicationVersion
DeleteRobotApplicationResponse
- DeleteRobotApplicationResponse
object
DeleteRobotRequest
- DeleteRobotRequest
object
- robot required
DeleteRobotResponse
- DeleteRobotResponse
object
DeleteSimulationApplicationRequest
- DeleteSimulationApplicationRequest
object
- application required
- applicationVersion
DeleteSimulationApplicationResponse
- DeleteSimulationApplicationResponse
object
DeleteWorldTemplateRequest
- DeleteWorldTemplateRequest
object
- template required
DeleteWorldTemplateResponse
- DeleteWorldTemplateResponse
object
DeploymentApplicationConfig
- DeploymentApplicationConfig
object
: Information about a deployment application configuration.- application required
- applicationVersion required
- launchConfig required
- environmentVariables
- launchFile required
- packageName required
- postLaunchFile
- preLaunchFile
DeploymentApplicationConfigs
- DeploymentApplicationConfigs
array
DeploymentConfig
- DeploymentConfig
object
: Information about a deployment configuration.- concurrentDeploymentPercentage
- downloadConditionFile
- bucket required
- etag
- key required
- failureThresholdPercentage
- robotDeploymentTimeoutInSeconds
DeploymentJob
- DeploymentJob
object
: Information about a deployment job.- arn
- createdAt
- deploymentApplicationConfigs
- deploymentConfig
- concurrentDeploymentPercentage
- downloadConditionFile
- bucket required
- etag
- key required
- failureThresholdPercentage
- robotDeploymentTimeoutInSeconds
- failureCode
- failureReason
- fleet
- status
DeploymentJobErrorCode
- DeploymentJobErrorCode
string
(values: ResourceNotFound, EnvironmentSetupError, EtagMismatch, FailureThresholdBreached, RobotDeploymentAborted, RobotDeploymentNoResponse, RobotAgentConnectionTimeout, GreengrassDeploymentFailed, InvalidGreengrassGroup, MissingRobotArchitecture, MissingRobotApplicationArchitecture, MissingRobotDeploymentResource, GreengrassGroupVersionDoesNotExist, LambdaDeleted, ExtractingBundleFailure, PreLaunchFileFailure, PostLaunchFileFailure, BadPermissionError, DownloadConditionFailed, InternalServerError)
DeploymentJobs
- DeploymentJobs
array
- items DeploymentJob
DeploymentLaunchConfig
- DeploymentLaunchConfig
object
: Configuration information for a deployment launch.- environmentVariables
- launchFile required
- packageName required
- postLaunchFile
- preLaunchFile
DeploymentStatus
- DeploymentStatus
string
(values: Pending, Preparing, InProgress, Failed, Succeeded, Canceled)
DeploymentTimeout
- DeploymentTimeout
integer
DeploymentVersion
- DeploymentVersion
string
DeregisterRobotRequest
- DeregisterRobotRequest
object
- fleet required
- robot required
DeregisterRobotResponse
- DeregisterRobotResponse
object
- fleet
- robot
DescribeDeploymentJobRequest
- DescribeDeploymentJobRequest
object
- job required
DescribeDeploymentJobResponse
- DescribeDeploymentJobResponse
object
- tags
- arn
- createdAt
- deploymentApplicationConfigs
- deploymentConfig
- concurrentDeploymentPercentage
- downloadConditionFile
- bucket required
- etag
- key required
- failureThresholdPercentage
- robotDeploymentTimeoutInSeconds
- failureCode
- failureReason
- fleet
- robotDeploymentSummary
- items RobotDeployment
- status
DescribeFleetRequest
- DescribeFleetRequest
object
- fleet required
DescribeFleetResponse
- DescribeFleetResponse
object
- tags
- arn
- createdAt
- lastDeploymentJob
- lastDeploymentStatus
- lastDeploymentTime
- name
- robots
- items Robot
DescribeRobotApplicationRequest
- DescribeRobotApplicationRequest
object
- application required
- applicationVersion
DescribeRobotApplicationResponse
- DescribeRobotApplicationResponse
object
- tags
- arn
- lastUpdatedAt
- name
- revisionId
- robotSoftwareSuite
- name
- version
- sources
- items Source
- version
DescribeRobotRequest
- DescribeRobotRequest
object
- robot required
DescribeRobotResponse
- DescribeRobotResponse
object
- tags
- architecture
- arn
- createdAt
- fleetArn
- greengrassGroupId
- lastDeploymentJob
- lastDeploymentTime
- name
- status
DescribeSimulationApplicationRequest
- DescribeSimulationApplicationRequest
object
- application required
- applicationVersion
DescribeSimulationApplicationResponse
- DescribeSimulationApplicationResponse
object
- tags
- arn
- lastUpdatedAt
- name
- renderingEngine
- name
- version
- revisionId
- robotSoftwareSuite
- name
- version
- simulationSoftwareSuite
- name
- version
- sources
- items Source
- version
DescribeSimulationJobBatchRequest
- DescribeSimulationJobBatchRequest
object
- batch required
DescribeSimulationJobBatchResponse
- DescribeSimulationJobBatchResponse
object
- tags
- arn
- batchPolicy
- maxConcurrency
- timeoutInSeconds
- clientRequestToken
- createdAt
- createdRequests
- items SimulationJobSummary
- failedRequests
- failureCode
- failureReason
- lastUpdatedAt
- pendingRequests
- items SimulationJobRequest
- status
DescribeSimulationJobRequest
- DescribeSimulationJobRequest
object
- job required
DescribeSimulationJobResponse
- DescribeSimulationJobResponse
object
- tags
- arn
- clientRequestToken
- compute
- simulationUnitLimit
- dataSources
- items DataSource
- failureBehavior
- failureCode
- failureReason
- iamRole
- lastStartedAt
- lastUpdatedAt
- loggingConfig
- recordAllRosTopics required
- maxJobDurationInSeconds
- name
- networkInterface
- networkInterfaceId
- privateIpAddress
- publicIpAddress
- outputLocation
- s3Bucket
- s3Prefix
- robotApplications
- items RobotApplicationConfig
- simulationApplications
- simulationTimeMillis
- status
- vpcConfig
- assignPublicIp
- securityGroups
- items NonEmptyString
- subnets
- items NonEmptyString
- vpcId
DescribeWorldExportJobRequest
- DescribeWorldExportJobRequest
object
- job required
DescribeWorldExportJobResponse
- DescribeWorldExportJobResponse
object
- tags
- arn
- clientRequestToken
- createdAt
- failureCode
- failureReason
- iamRole
- outputLocation OutputLocation
- status
- worlds
- items Arn
DescribeWorldGenerationJobRequest
- DescribeWorldGenerationJobRequest
object
- job required
DescribeWorldGenerationJobResponse
- DescribeWorldGenerationJobResponse
object
- tags
- arn
- clientRequestToken
- createdAt
- failureCode
- failureReason
- finishedWorldsSummary
- failureSummary
- failures
- items WorldFailure
- totalFailureCount
- failures
- finishedCount
- succeededWorlds
- items Arn
- failureSummary
- status
- template
- worldCount
- floorplanCount
- interiorCountPerFloorplan
- worldTags
DescribeWorldRequest
- DescribeWorldRequest
object
- world required
DescribeWorldResponse
- DescribeWorldResponse
object
- tags
- arn
- createdAt
- generationJob
- template
DescribeWorldTemplateRequest
- DescribeWorldTemplateRequest
object
- template required
DescribeWorldTemplateResponse
- DescribeWorldTemplateResponse
object
- tags
- arn
- clientRequestToken
- createdAt
- lastUpdatedAt
- name
EnvironmentVariableKey
- EnvironmentVariableKey
string
EnvironmentVariableMap
- EnvironmentVariableMap
object
EnvironmentVariableValue
- EnvironmentVariableValue
string
FailedAt
- FailedAt
string
FailedCreateSimulationJobRequest
- FailedCreateSimulationJobRequest
object
: Information about a failed create simulation job request.- failedAt
- failureCode
- failureReason
- request
- tags
- compute
- simulationUnitLimit
- dataSources
- items DataSourceConfig
- failureBehavior
- iamRole
- loggingConfig LoggingConfig
- maxJobDurationInSeconds required
- outputLocation OutputLocation
- robotApplications
- items RobotApplicationConfig
- simulationApplications
- useDefaultApplications
- vpcConfig VPCConfig
FailedCreateSimulationJobRequests
- FailedCreateSimulationJobRequests
array
FailureBehavior
- FailureBehavior
string
(values: Fail, Continue)
FailureSummary
- FailureSummary
object
: Information about worlds that failed.- failures
- items WorldFailure
- totalFailureCount
- failures
Filter
- Filter
object
: Information about a filter.- name
- values
- items Name
FilterValues
- FilterValues
array
- items Name
Filters
- Filters
array
- items Filter
FinishedWorldsSummary
- FinishedWorldsSummary
object
: Information about worlds that finished.- failureSummary
- failures
- items WorldFailure
- totalFailureCount
- failures
- finishedCount
- succeededWorlds
- items Arn
- failureSummary
Fleet
- Fleet
object
: Information about a fleet.- arn
- createdAt
- lastDeploymentJob
- lastDeploymentStatus
- lastDeploymentTime
- name
Fleets
- Fleets
array
- items Fleet
FloorplanCount
- FloorplanCount
integer
GenericInteger
- GenericInteger
integer
GenericString
- GenericString
string
GetWorldTemplateBodyRequest
- GetWorldTemplateBodyRequest
object
- generationJob
- template
GetWorldTemplateBodyResponse
- GetWorldTemplateBodyResponse
object
- templateBody
IamRole
- IamRole
string
Id
- Id
string
IdempotentParameterMismatchException
Integer
- Integer
integer
InteriorCountPerFloorplan
- InteriorCountPerFloorplan
integer
InternalServerException
InvalidParameterException
JobDuration
- JobDuration
integer
Json
- Json
string
LastStartedAt
- LastStartedAt
string
LastUpdatedAt
- LastUpdatedAt
string
LaunchConfig
- LaunchConfig
object
: Information about a launch configuration.- environmentVariables
- launchFile required
- packageName required
- portForwardingConfig
- portMappings
- items PortMapping
- portMappings
- streamUI
LimitExceededException
ListDeploymentJobsRequest
- ListDeploymentJobsRequest
object
- filters
- items Filter
- maxResults
- nextToken
- filters
ListDeploymentJobsResponse
- ListDeploymentJobsResponse
object
- deploymentJobs
- items DeploymentJob
- nextToken
- deploymentJobs
ListFleetsRequest
- ListFleetsRequest
object
- filters
- items Filter
- maxResults
- nextToken
- filters
ListFleetsResponse
- ListFleetsResponse
object
- fleetDetails
- items Fleet
- nextToken
- fleetDetails
ListRobotApplicationsRequest
- ListRobotApplicationsRequest
object
- filters
- items Filter
- maxResults
- nextToken
- versionQualifier
- filters
ListRobotApplicationsResponse
- ListRobotApplicationsResponse
object
- nextToken
- robotApplicationSummaries
- items RobotApplicationSummary
ListRobotsRequest
- ListRobotsRequest
object
- filters
- items Filter
- maxResults
- nextToken
- filters
ListRobotsResponse
- ListRobotsResponse
object
- nextToken
- robots
- items Robot
ListSimulationApplicationsRequest
- ListSimulationApplicationsRequest
object
- filters
- items Filter
- maxResults
- nextToken
- versionQualifier
- filters
ListSimulationApplicationsResponse
- ListSimulationApplicationsResponse
object
- nextToken
- simulationApplicationSummaries
ListSimulationJobBatchesRequest
- ListSimulationJobBatchesRequest
object
- filters
- items Filter
- maxResults
- nextToken
- filters
ListSimulationJobBatchesResponse
- ListSimulationJobBatchesResponse
object
- nextToken
- simulationJobBatchSummaries
ListSimulationJobsRequest
- ListSimulationJobsRequest
object
- filters
- items Filter
- maxResults
- nextToken
- filters
ListSimulationJobsResponse
- ListSimulationJobsResponse
object
- nextToken
- simulationJobSummaries required
- items SimulationJobSummary
ListTagsForResourceRequest
- ListTagsForResourceRequest
object
ListTagsForResourceResponse
- ListTagsForResourceResponse
object
- tags
ListWorldExportJobsRequest
- ListWorldExportJobsRequest
object
- filters
- items Filter
- maxResults
- nextToken
- filters
ListWorldExportJobsResponse
- ListWorldExportJobsResponse
object
- nextToken
- worldExportJobSummaries required
- items WorldExportJobSummary
ListWorldGenerationJobsRequest
- ListWorldGenerationJobsRequest
object
- filters
- items Filter
- maxResults
- nextToken
- filters
ListWorldGenerationJobsResponse
- ListWorldGenerationJobsResponse
object
- nextToken
- worldGenerationJobSummaries required
ListWorldTemplatesRequest
- ListWorldTemplatesRequest
object
- maxResults
- nextToken
ListWorldTemplatesResponse
- ListWorldTemplatesResponse
object
- nextToken
- templateSummaries
- items TemplateSummary
ListWorldsRequest
- ListWorldsRequest
object
- filters
- items Filter
- maxResults
- nextToken
- filters
ListWorldsResponse
- ListWorldsResponse
object
- nextToken
- worldSummaries
- items WorldSummary
LoggingConfig
- LoggingConfig
object
: The logging configuration.- recordAllRosTopics required
MaxConcurrency
- MaxConcurrency
integer
MaxResults
- MaxResults
integer
Name
- Name
string
NetworkInterface
- NetworkInterface
object
: Describes a network interface.- networkInterfaceId
- privateIpAddress
- publicIpAddress
NonEmptyString
- NonEmptyString
string
NonSystemPort
- NonSystemPort
integer
OutputLocation
- OutputLocation
object
: The output location.- s3Bucket
- s3Prefix
PaginationToken
- Pa