Table of Contents
A low-level client representing AWS RoboMaker:
import boto3
client = boto3.client('robomaker')
These are the available methods:
Describes one or more simulation jobs.
See also: AWS API Documentation
Request Syntax
response = client.batch_describe_simulation_job(
jobs=[
'string',
]
)
[REQUIRED]
A list of Amazon Resource Names (ARNs) of simulation jobs to describe.
{
'jobs': [
{
'arn': 'string',
'name': 'string',
'status': 'Pending'|'Preparing'|'Running'|'Restarting'|'Completed'|'Failed'|'RunningFailed'|'Terminating'|'Terminated'|'Canceled',
'lastUpdatedAt': datetime(2015, 1, 1),
'failureBehavior': 'Fail'|'Continue',
'failureCode': 'InternalServiceError'|'RobotApplicationCrash'|'SimulationApplicationCrash'|'BadPermissionsRobotApplication'|'BadPermissionsSimulationApplication'|'BadPermissionsS3Output'|'BadPermissionsCloudwatchLogs'|'SubnetIpLimitExceeded'|'ENILimitExceeded'|'BadPermissionsUserCredentials'|'InvalidBundleRobotApplication'|'InvalidBundleSimulationApplication'|'RobotApplicationVersionMismatchedEtag'|'SimulationApplicationVersionMismatchedEtag',
'clientRequestToken': 'string',
'outputLocation': {
's3Bucket': 'string',
's3Prefix': 'string'
},
'maxJobDurationInSeconds': 123,
'simulationTimeMillis': 123,
'iamRole': 'string',
'robotApplications': [
{
'application': 'string',
'applicationVersion': 'string',
'launchConfig': {
'packageName': 'string',
'launchFile': 'string',
'environmentVariables': {
'string': 'string'
}
}
},
],
'simulationApplications': [
{
'application': 'string',
'applicationVersion': 'string',
'launchConfig': {
'packageName': 'string',
'launchFile': 'string',
'environmentVariables': {
'string': 'string'
}
}
},
],
'vpcConfig': {
'subnets': [
'string',
],
'securityGroups': [
'string',
],
'vpcId': 'string',
'assignPublicIp': True|False
}
},
],
'unprocessedJobs': [
'string',
]
}
Response Structure
A list of simulation jobs.
Information about a simulation job.
The Amazon Resource Name (ARN) of the simulation job.
The name of the simulation job.
Status of the simulation job.
The time, in milliseconds since the epoch, when the simulation job was last updated.
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.
The failure code of the simulation job if it failed.
A unique identifier for this SimulationJob request.
Location for output files generated by the simulation job.
The S3 bucket for output.
The S3 folder in the s3Bucket where output files will be placed.
The maximum simulation job duration in seconds. The value must be 8 days (691,200 seconds) or less.
The simulation job execution duration in milliseconds.
The IAM role 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. See how to specify AWS security credentials for your application .
A list of robot applications.
Application configuration information for a robot.
The application information for the robot application.
The version of the robot application.
The launch configuration for the robot application.
The package name.
The launch file.
The environment variables for the application launch.
A list of simulation applications.
Information about a simulation application configuration.
The application information for the simulation application.
The version of the simulation application.
The launch configuration for the simulation application.
The package name.
The launch file.
The environment variables for the application launch.
VPC configuration information.
A list of subnet IDs associated with the simulation job.
A list of security group IDs associated with the simulation job.
The VPC ID associated with your simulation job.
A boolean indicating if a public IP was assigned.
A list of unprocessed simulation job Amazon Resource Names (ARNs).
Check if an operation can be paginated.
Cancels the specified simulation job.
See also: AWS API Documentation
Request Syntax
response = client.cancel_simulation_job(
job='string'
)
[REQUIRED]
The simulation job ARN to cancel.
{}
Response Structure
Creates a deployment job.
See also: AWS API Documentation
Request Syntax
response = client.create_deployment_job(
deploymentConfig={
'concurrentDeploymentPercentage': 123,
'failureThresholdPercentage': 123
},
clientRequestToken='string',
fleet='string',
deploymentApplicationConfigs=[
{
'application': 'string',
'applicationVersion': 'string',
'launchConfig': {
'packageName': 'string',
'preLaunchFile': 'string',
'launchFile': 'string',
'postLaunchFile': 'string',
'environmentVariables': {
'string': 'string'
}
}
},
]
)
The requested deployment configuration.
The percentage of robots receiving the deployment at the same time.
The percentage of deployments that need to fail before stopping deployment.
[REQUIRED]
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
This field is autopopulated if not provided.
[REQUIRED]
The Amazon Resource Name (ARN) of the fleet to deploy.
[REQUIRED]
The deployment application configuration.
Information about a deployment application configuration.
The application.
The version of the application.
The launch configuration, usually roslaunch .
The package name.
The deployment pre-launch file. This file will be executed prior to the deployment launch file.
The deployment launch file.
The deployment post-launch file. This file will be executed after the deployment launch file.
An array of key/value pairs specifying environment variables for the deployment application.
dict
Response Syntax
{
'arn': 'string',
'fleet': 'string',
'status': 'Pending'|'Preparing'|'InProgress'|'Failed'|'Succeeded',
'deploymentApplicationConfigs': [
{
'application': 'string',
'applicationVersion': 'string',
'launchConfig': {
'packageName': 'string',
'preLaunchFile': 'string',
'launchFile': 'string',
'postLaunchFile': 'string',
'environmentVariables': {
'string': 'string'
}
}
},
],
'failureReason': 'string',
'failureCode': 'ResourceNotFound'|'FailureThresholdBreached'|'RobotDeploymentNoResponse'|'GreengrassDeploymentFailed'|'MissingRobotArchitecture'|'MissingRobotApplicationArchitecture'|'MissingRobotDeploymentResource'|'GreengrassGroupVersionDoesNotExist'|'ExtractingBundleFailure'|'PreLaunchFileFailure'|'PostLaunchFileFailure'|'BadPermissionError'|'InternalServerError',
'createdAt': datetime(2015, 1, 1),
'deploymentConfig': {
'concurrentDeploymentPercentage': 123,
'failureThresholdPercentage': 123
}
}
Response Structure
(dict) --
arn (string) --
The Amazon Resource Name (ARN) of the deployment job.
fleet (string) --
The target fleet for the deployment job.
status (string) --
The status of the deployment job.
deploymentApplicationConfigs (list) --
The deployment application configuration.
(dict) --
Information about a deployment application configuration.
application (string) --
The application.
applicationVersion (string) --
The version of the application.
launchConfig (dict) --
The launch configuration, usually roslaunch .
packageName (string) --
The package name.
preLaunchFile (string) --
The deployment pre-launch file. This file will be executed prior to the deployment launch file.
launchFile (string) --
The deployment launch file.
postLaunchFile (string) --
The deployment post-launch file. This file will be executed after the deployment launch file.
environmentVariables (dict) --
An array of key/value pairs specifying environment variables for the deployment application.
failureReason (string) --
The failure reason of the deployment job if it failed.
failureCode (string) --
The failure code of the deployment job if it failed.
createdAt (datetime) --
The time, in milliseconds since the epoch, when the fleet was created.
deploymentConfig (dict) --
The deployment configuration.
concurrentDeploymentPercentage (integer) --
The percentage of robots receiving the deployment at the same time.
failureThresholdPercentage (integer) --
The percentage of deployments that need to fail before stopping deployment.
Creates a fleet, a logical group of robots running the same robot application.
See also: AWS API Documentation
Request Syntax
response = client.create_fleet(
name='string'
)
[REQUIRED]
The name of the fleet.
{
'arn': 'string',
'name': 'string',
'createdAt': datetime(2015, 1, 1)
}
Response Structure
The Amazon Resource Name (ARN) of the fleet.
The name of the fleet.
The time, in milliseconds since the epoch, when the fleet was created.
Creates a robot.
See also: AWS API Documentation
Request Syntax
response = client.create_robot(
name='string',
architecture='X86_64'|'ARM64'|'ARMHF',
greengrassGroupId='string'
)
[REQUIRED]
The name for the robot.
[REQUIRED]
The target architecture of the robot.
[REQUIRED]
The Greengrass group id.
dict
Response Syntax
{
'arn': 'string',
'name': 'string',
'createdAt': datetime(2015, 1, 1),
'greengrassGroupId': 'string',
'architecture': 'X86_64'|'ARM64'|'ARMHF'
}
Response Structure
(dict) --
arn (string) --
The Amazon Resource Name (ARN) of the robot.
name (string) --
The name of the robot.
createdAt (datetime) --
The time, in milliseconds since the epoch, when the robot was created.
greengrassGroupId (string) --
The Amazon Resource Name (ARN) of the Greengrass group associated with the robot.
architecture (string) --
The target architecture of the robot.
Creates a robot application.
See also: AWS API Documentation
Request Syntax
response = client.create_robot_application(
name='string',
sources=[
{
's3Bucket': 'string',
's3Key': 'string',
'architecture': 'X86_64'|'ARM64'|'ARMHF'
},
],
robotSoftwareSuite={
'name': 'ROS',
'version': 'Kinetic'
}
)
[REQUIRED]
The name of the robot application.
[REQUIRED]
The sources of the robot application.
Information about a source configuration.
The Amazon S3 bucket name.
The s3 object key.
The target processor architecture for the application.
[REQUIRED]
The robot software suite used by the robot application.
The name of the robot software suite.
The version of the robot software suite.
dict
Response Syntax
{
'arn': 'string',
'name': 'string',
'version': 'string',
'sources': [
{
's3Bucket': 'string',
's3Key': 'string',
'etag': 'string',
'architecture': 'X86_64'|'ARM64'|'ARMHF'
},
],
'robotSoftwareSuite': {
'name': 'ROS',
'version': 'Kinetic'
},
'lastUpdatedAt': datetime(2015, 1, 1),
'revisionId': 'string'
}
Response Structure
(dict) --
arn (string) --
The Amazon Resource Name (ARN) of the robot application.
name (string) --
The name of the robot application.
version (string) --
The version of the robot application.
sources (list) --
The sources of the robot application.
(dict) --
Information about a source.
s3Bucket (string) --
The s3 bucket name.
s3Key (string) --
The s3 object key.
etag (string) --
A hash of the object specified by s3Bucket and s3Key .
architecture (string) --
The taget processor architecture for the application.
robotSoftwareSuite (dict) --
The robot software suite used by the robot application.
name (string) --
The name of the robot software suite.
version (string) --
The version of the robot software suite.
lastUpdatedAt (datetime) --
The time, in milliseconds since the epoch, when the robot application was last updated.
revisionId (string) --
The revision id of the robot application.
Creates a version of a robot application.
See also: AWS API Documentation
Request Syntax
response = client.create_robot_application_version(
application='string',
currentRevisionId='string'
)
[REQUIRED]
The application information for the robot application.
dict
Response Syntax
{
'arn': 'string',
'name': 'string',
'version': 'string',
'sources': [
{
's3Bucket': 'string',
's3Key': 'string',
'etag': 'string',
'architecture': 'X86_64'|'ARM64'|'ARMHF'
},
],
'robotSoftwareSuite': {
'name': 'ROS',
'version': 'Kinetic'
},
'lastUpdatedAt': datetime(2015, 1, 1),
'revisionId': 'string'
}
Response Structure
(dict) --
arn (string) --
The Amazon Resource Name (ARN) of the robot application.
name (string) --
The name of the robot application.
version (string) --
The version of the robot application.
sources (list) --
The sources of the robot application.
(dict) --
Information about a source.
s3Bucket (string) --
The s3 bucket name.
s3Key (string) --
The s3 object key.
etag (string) --
A hash of the object specified by s3Bucket and s3Key .
architecture (string) --
The taget processor architecture for the application.
robotSoftwareSuite (dict) --
The robot software suite used by the robot application.
name (string) --
The name of the robot software suite.
version (string) --
The version of the robot software suite.
lastUpdatedAt (datetime) --
The time, in milliseconds since the epoch, when the robot application was last updated.
revisionId (string) --
The revision id of the robot application.
Creates a simulation application.
See also: AWS API Documentation
Request Syntax
response = client.create_simulation_application(
name='string',
sources=[
{
's3Bucket': 'string',
's3Key': 'string',
'architecture': 'X86_64'|'ARM64'|'ARMHF'
},
],
simulationSoftwareSuite={
'name': 'Gazebo',
'version': 'string'
},
robotSoftwareSuite={
'name': 'ROS',
'version': 'Kinetic'
},
renderingEngine={
'name': 'OGRE',
'version': 'string'
}
)
[REQUIRED]
The name of the simulation application.
[REQUIRED]
The sources of the simulation application.
Information about a source configuration.
The Amazon S3 bucket name.
The s3 object key.
The target processor architecture for the application.
[REQUIRED]
The simulation software suite used by the simulation application.
The name of the simulation software suite.
The version of the simulation software suite.
[REQUIRED]
The robot software suite of the simulation application.
The name of the robot software suite.
The version of the robot software suite.
[REQUIRED]
The rendering engine for the simulation application.
The name of the rendering engine.
The version of the rendering engine.
dict
Response Syntax
{
'arn': 'string',
'name': 'string',
'version': 'string',
'sources': [
{
's3Bucket': 'string',
's3Key': 'string',
'etag': 'string',
'architecture': 'X86_64'|'ARM64'|'ARMHF'
},
],
'simulationSoftwareSuite': {
'name': 'Gazebo',
'version': 'string'
},
'robotSoftwareSuite': {
'name': 'ROS',
'version': 'Kinetic'
},
'renderingEngine': {
'name': 'OGRE',
'version': 'string'
},
'lastUpdatedAt': datetime(2015, 1, 1),
'revisionId': 'string'
}
Response Structure
(dict) --
arn (string) --
The Amazon Resource Name (ARN) of the simulation application.
name (string) --
The name of the simulation application.
version (string) --
The version of the simulation application.
sources (list) --
The sources of the simulation application.
(dict) --
Information about a source.
s3Bucket (string) --
The s3 bucket name.
s3Key (string) --
The s3 object key.
etag (string) --
A hash of the object specified by s3Bucket and s3Key .
architecture (string) --
The taget processor architecture for the application.
simulationSoftwareSuite (dict) --
The simulation software suite used by the simulation application.
name (string) --
The name of the simulation software suite.
version (string) --
The version of the simulation software suite.
robotSoftwareSuite (dict) --
Information about the robot software suite.
name (string) --
The name of the robot software suite.
version (string) --
The version of the robot software suite.
renderingEngine (dict) --
The rendering engine for the simulation application.
name (string) --
The name of the rendering engine.
version (string) --
The version of the rendering engine.
lastUpdatedAt (datetime) --
The time, in milliseconds since the epoch, when the simulation application was last updated.
revisionId (string) --
The revision id of the simulation application.
Creates a simulation application with a specific revision id.
See also: AWS API Documentation
Request Syntax
response = client.create_simulation_application_version(
application='string',
currentRevisionId='string'
)
[REQUIRED]
The application information for the simulation application.
dict
Response Syntax
{
'arn': 'string',
'name': 'string',
'version': 'string',
'sources': [
{
's3Bucket': 'string',
's3Key': 'string',
'etag': 'string',
'architecture': 'X86_64'|'ARM64'|'ARMHF'
},
],
'simulationSoftwareSuite': {
'name': 'Gazebo',
'version': 'string'
},
'robotSoftwareSuite': {
'name': 'ROS',
'version': 'Kinetic'
},
'renderingEngine': {
'name': 'OGRE',
'version': 'string'
},
'lastUpdatedAt': datetime(2015, 1, 1),
'revisionId': 'string'
}
Response Structure
(dict) --
arn (string) --
The Amazon Resource Name (ARN) of the simulation application.
name (string) --
The name of the simulation application.
version (string) --
The version of the simulation application.
sources (list) --
The sources of the simulation application.
(dict) --
Information about a source.
s3Bucket (string) --
The s3 bucket name.
s3Key (string) --
The s3 object key.
etag (string) --
A hash of the object specified by s3Bucket and s3Key .
architecture (string) --
The taget processor architecture for the application.
simulationSoftwareSuite (dict) --
The simulation software suite used by the simulation application.
name (string) --
The name of the simulation software suite.
version (string) --
The version of the simulation software suite.
robotSoftwareSuite (dict) --
Information about the robot software suite.
name (string) --
The name of the robot software suite.
version (string) --
The version of the robot software suite.
renderingEngine (dict) --
The rendering engine for the simulation application.
name (string) --
The name of the rendering engine.
version (string) --
The version of the rendering engine.
lastUpdatedAt (datetime) --
The time, in milliseconds since the epoch, when the simulation application was last updated.
revisionId (string) --
The revision ID of the simulation application.
Creates a simulation job.
See also: AWS API Documentation
Request Syntax
response = client.create_simulation_job(
clientRequestToken='string',
outputLocation={
's3Bucket': 'string',
's3Prefix': 'string'
},
maxJobDurationInSeconds=123,
iamRole='string',
failureBehavior='Fail'|'Continue',
robotApplications=[
{
'application': 'string',
'applicationVersion': 'string',
'launchConfig': {
'packageName': 'string',
'launchFile': 'string',
'environmentVariables': {
'string': 'string'
}
}
},
],
simulationApplications=[
{
'application': 'string',
'applicationVersion': 'string',
'launchConfig': {
'packageName': 'string',
'launchFile': 'string',
'environmentVariables': {
'string': 'string'
}
}
},
],
vpcConfig={
'subnets': [
'string',
],
'securityGroups': [
'string',
],
'assignPublicIp': True|False
}
)
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
This field is autopopulated if not provided.
Location for output files generated by the simulation job.
The S3 bucket for output.
The S3 folder in the s3Bucket where output files will be placed.
[REQUIRED]
The maximum simulation job duration in seconds (up to 14 days or 1,209,600 seconds. When maxJobDurationInSeconds is reached, the simulation job will status will transition to Completed .
[REQUIRED]
The IAM role 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. See how to specify AWS security credentials for your application .
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.
The robot application to use in the simulation job.
Application configuration information for a robot.
The application information for the robot application.
The version of the robot application.
The launch configuration for the robot application.
The package name.
The launch file.
The environment variables for the application launch.
The simulation application to use in the simulation job.
Information about a simulation application configuration.
The application information for the simulation application.
The version of the simulation application.
The launch configuration for the simulation application.
The package name.
The launch file.
The environment variables for the application launch.
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 one subnet ID.
A list of one or more subnet IDs in your VPC.
A list of one or more security groups IDs in your VPC.
A boolean indicating whether to assign a public IP address.
dict
Response Syntax
{
'arn': 'string',
'status': 'Pending'|'Preparing'|'Running'|'Restarting'|'Completed'|'Failed'|'RunningFailed'|'Terminating'|'Terminated'|'Canceled',
'lastUpdatedAt': datetime(2015, 1, 1),
'failureBehavior': 'Fail'|'Continue',
'failureCode': 'InternalServiceError'|'RobotApplicationCrash'|'SimulationApplicationCrash'|'BadPermissionsRobotApplication'|'BadPermissionsSimulationApplication'|'BadPermissionsS3Output'|'BadPermissionsCloudwatchLogs'|'SubnetIpLimitExceeded'|'ENILimitExceeded'|'BadPermissionsUserCredentials'|'InvalidBundleRobotApplication'|'InvalidBundleSimulationApplication'|'RobotApplicationVersionMismatchedEtag'|'SimulationApplicationVersionMismatchedEtag',
'clientRequestToken': 'string',
'outputLocation': {
's3Bucket': 'string',
's3Prefix': 'string'
},
'maxJobDurationInSeconds': 123,
'simulationTimeMillis': 123,
'iamRole': 'string',
'robotApplications': [
{
'application': 'string',
'applicationVersion': 'string',
'launchConfig': {
'packageName': 'string',
'launchFile': 'string',
'environmentVariables': {
'string': 'string'
}
}
},
],
'simulationApplications': [
{
'application': 'string',
'applicationVersion': 'string',
'launchConfig': {
'packageName': 'string',
'launchFile': 'string',
'environmentVariables': {
'string': 'string'
}
}
},
],
'vpcConfig': {
'subnets': [
'string',
],
'securityGroups': [
'string',
],
'vpcId': 'string',
'assignPublicIp': True|False
}
}
Response Structure
(dict) --
arn (string) --
The Amazon Resource Name (ARN) of the simulation job.
status (string) --
The status of the simulation job.
lastUpdatedAt (datetime) --
The time, in milliseconds since the epoch, when the simulation job was last updated.
failureBehavior (string) --
the failure behavior for the simulation job.
failureCode (string) --
The failure code of the simulation job if it failed.
clientRequestToken (string) --
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
outputLocation (dict) --
Simulation job output files location.
s3Bucket (string) --
The S3 bucket for output.
s3Prefix (string) --
The S3 folder in the s3Bucket where output files will be placed.
maxJobDurationInSeconds (integer) --
The maximum simulation job duration in seconds. The value must be 8 days (691,200 seconds) or less.
simulationTimeMillis (integer) --
The simulation job execution duration in milliseconds.
iamRole (string) --
The IAM role that allows the simulation job to call the AWS APIs that are specified in its associated policies on your behalf.
robotApplications (list) --
The robot application used by the simulation job.
(dict) --
Application configuration information for a robot.
application (string) --
The application information for the robot application.
applicationVersion (string) --
The version of the robot application.
launchConfig (dict) --
The launch configuration for the robot application.
packageName (string) --
The package name.
launchFile (string) --
The launch file.
environmentVariables (dict) --
The environment variables for the application launch.
simulationApplications (list) --
The simulation application used by the simulation job.
(dict) --
Information about a simulation application configuration.
application (string) --
The application information for the simulation application.
applicationVersion (string) --
The version of the simulation application.
launchConfig (dict) --
The launch configuration for the simulation application.
packageName (string) --
The package name.
launchFile (string) --
The launch file.
environmentVariables (dict) --
The environment variables for the application launch.
vpcConfig (dict) --
Information about the vpc configuration.
subnets (list) --
A list of subnet IDs associated with the simulation job.
securityGroups (list) --
A list of security group IDs associated with the simulation job.
vpcId (string) --
The VPC ID associated with your simulation job.
assignPublicIp (boolean) --
A boolean indicating if a public IP was assigned.
Deletes a fleet.
See also: AWS API Documentation
Request Syntax
response = client.delete_fleet(
fleet='string'
)
[REQUIRED]
The Amazon Resource Name (ARN) of the fleet.
{}
Response Structure
Deletes a robot.
See also: AWS API Documentation
Request Syntax
response = client.delete_robot(
robot='string'
)
[REQUIRED]
The Amazon Resource Name (ARN) of the robot.
{}
Response Structure
Deletes a robot application.
See also: AWS API Documentation
Request Syntax
response = client.delete_robot_application(
application='string',
applicationVersion='string'
)
[REQUIRED]
The Amazon Resource Name (ARN) of the the robot application.
dict
Response Syntax
{}
Response Structure
Deletes a simulation application.
See also: AWS API Documentation
Request Syntax
response = client.delete_simulation_application(
application='string',
applicationVersion='string'
)
[REQUIRED]
The application information for the simulation application to delete.
dict
Response Syntax
{}
Response Structure
Deregisters a robot.
See also: AWS API Documentation
Request Syntax
response = client.deregister_robot(
fleet='string',
robot='string'
)
[REQUIRED]
The Amazon Resource Name (ARN) of the fleet.
[REQUIRED]
The Amazon Resource Name (ARN) of the robot.
dict
Response Syntax
{
'fleet': 'string',
'robot': 'string'
}
Response Structure
(dict) --
fleet (string) --
The Amazon Resource Name (ARN) of the fleet.
robot (string) --
The Amazon Resource Name (ARN) of the robot.
Describes a deployment job. [Does it work regardless of deployment status, e.g. Failed?]
See also: AWS API Documentation
Request Syntax
response = client.describe_deployment_job(
job='string'
)
[REQUIRED]
The Amazon Resource Name (ARN) of the deployment job.
{
'arn': 'string',
'fleet': 'string',
'status': 'Pending'|'Preparing'|'InProgress'|'Failed'|'Succeeded',
'deploymentConfig': {
'concurrentDeploymentPercentage': 123,
'failureThresholdPercentage': 123
},
'deploymentApplicationConfigs': [
{
'application': 'string',
'applicationVersion': 'string',
'launchConfig': {
'packageName': 'string',
'preLaunchFile': 'string',
'launchFile': 'string',
'postLaunchFile': 'string',
'environmentVariables': {
'string': 'string'
}
}
},
],
'failureReason': 'string',
'failureCode': 'ResourceNotFound'|'FailureThresholdBreached'|'RobotDeploymentNoResponse'|'GreengrassDeploymentFailed'|'MissingRobotArchitecture'|'MissingRobotApplicationArchitecture'|'MissingRobotDeploymentResource'|'GreengrassGroupVersionDoesNotExist'|'ExtractingBundleFailure'|'PreLaunchFileFailure'|'PostLaunchFileFailure'|'BadPermissionError'|'InternalServerError',
'createdAt': datetime(2015, 1, 1),
'robotDeploymentSummary': [
{
'arn': 'string',
'deploymentStartTime': datetime(2015, 1, 1),
'deploymentFinishTime': datetime(2015, 1, 1),
'status': 'Available'|'Registered'|'PendingNewDeployment'|'Deploying'|'Failed'|'InSync'|'NoResponse',
'progressDetail': {
'currentProgress': 'string',
'targetResource': 'string'
},
'failureReason': 'string',
'failureCode': 'ResourceNotFound'|'FailureThresholdBreached'|'RobotDeploymentNoResponse'|'GreengrassDeploymentFailed'|'MissingRobotArchitecture'|'MissingRobotApplicationArchitecture'|'MissingRobotDeploymentResource'|'GreengrassGroupVersionDoesNotExist'|'ExtractingBundleFailure'|'PreLaunchFileFailure'|'PostLaunchFileFailure'|'BadPermissionError'|'InternalServerError'
},
]
}
Response Structure
The Amazon Resource Name (ARN) of the deployment job.
The Amazon Resource Name (ARN) of the fleet.
The status of the deployment job.
The deployment configuration.
The percentage of robots receiving the deployment at the same time.
The percentage of deployments that need to fail before stopping deployment.
The deployment application configuration.
Information about a deployment application configuration.
The application.
The version of the application.
The launch configuration, usually roslaunch .
The package name.
The deployment pre-launch file. This file will be executed prior to the deployment launch file.
The deployment launch file.
The deployment post-launch file. This file will be executed after the deployment launch file.
An array of key/value pairs specifying environment variables for the deployment application.
A short description of the reason why the deployment job failed.
The deployment job failure code.
The time, in milliseconds since the epoch, when the deployment job was created.
A list of robot deployment summaries.
Information about a robot deployment.
The robot deployment Amazon Resource Name (ARN).
The time, in milliseconds since the epoch, when the deployment was started.
The time, in milliseconds since the epoch, when the deployment finished.
The status of the robot deployment.
Information about how the deployment is progressing.
The current progress status.
The Amazon Resource Name (ARN) of the deployment job.
A short description of the reason why the robot deployment failed.
The robot deployment failure code.
Describes a fleet.
See also: AWS API Documentation
Request Syntax
response = client.describe_fleet(
fleet='string'
)
[REQUIRED]
The Amazon Resource Name (ARN) of the fleet.
{
'name': 'string',
'arn': 'string',
'robots': [
{
'arn': 'string',
'name': 'string',
'fleetArn': 'string',
'status': 'Available'|'Registered'|'PendingNewDeployment'|'Deploying'|'Failed'|'InSync'|'NoResponse',
'greenGrassGroupId': 'string',
'createdAt': datetime(2015, 1, 1),
'architecture': 'X86_64'|'ARM64'|'ARMHF',
'lastDeploymentJob': 'string',
'lastDeploymentTime': datetime(2015, 1, 1)
},
],
'createdAt': datetime(2015, 1, 1),
'lastDeploymentStatus': 'Pending'|'Preparing'|'InProgress'|'Failed'|'Succeeded',
'lastDeploymentJob': 'string',
'lastDeploymentTime': datetime(2015, 1, 1)
}
Response Structure
The name of the fleet.
The Amazon Resource Name (ARN) of the fleet.
A list of robots.
Information about a robot.
The Amazon Resource Name (ARN) of the robot.
The name of the robot.
The Amazon Resource Name (ARN) of the fleet.
The status of the robot.
The Greengrass group associated with the robot.
The time, in milliseconds since the epoch, when the robot was created.
The architecture of the robot.
The Amazon Resource Name (ARN) of the last deployment job.
The time of the last deployment.
The time, in milliseconds since the epoch, when the fleet was created.
The status of the last deployment.
The Amazon Resource Name (ARN) of the last deployment job.
The time of the last deployment.
Describes a robot.
See also: AWS API Documentation
Request Syntax
response = client.describe_robot(
robot='string'
)
[REQUIRED]
The Amazon Resource Name (ARN) of the robot to be described.
{
'arn': 'string',
'name': 'string',
'fleetArn': 'string',
'status': 'Available'|'Registered'|'PendingNewDeployment'|'Deploying'|'Failed'|'InSync'|'NoResponse',
'greengrassGroupId': 'string',
'createdAt': datetime(2015, 1, 1),
'architecture': 'X86_64'|'ARM64'|'ARMHF',
'lastDeploymentJob': 'string',
'lastDeploymentTime': datetime(2015, 1, 1)
}
Response Structure
The Amazon Resource Name (ARN) of the robot.
The name of the robot.
The Amazon Resource Name (ARN) of the fleet.
The status of the fleet.
The Greengrass group id.
The time, in milliseconds since the epoch, when the robot was created.
The target architecture of the robot application.
The Amazon Resource Name (ARN) of the last deployment job.
The time of the last deployment job.
Describes a robot application.
See also: AWS API Documentation
Request Syntax
response = client.describe_robot_application(
application='string',
applicationVersion='string'
)
[REQUIRED]
The Amazon Resource Name (ARN) of the robot application.
dict
Response Syntax
{
'arn': 'string',
'name': 'string',
'version': 'string',
'sources': [
{
's3Bucket': 'string',
's3Key': 'string',
'etag': 'string',
'architecture': 'X86_64'|'ARM64'|'ARMHF'
},
],
'robotSoftwareSuite': {
'name': 'ROS',
'version': 'Kinetic'
},
'revisionId': 'string',
'lastUpdatedAt': datetime(2015, 1, 1)
}
Response Structure
(dict) --
arn (string) --
The Amazon Resource Name (ARN) of the robot application.
name (string) --
The name of the robot application.
version (string) --
The version of the robot application.
sources (list) --
The sources of the robot application.
(dict) --
Information about a source.
s3Bucket (string) --
The s3 bucket name.
s3Key (string) --
The s3 object key.
etag (string) --
A hash of the object specified by s3Bucket and s3Key .
architecture (string) --
The taget processor architecture for the application.
robotSoftwareSuite (dict) --
The robot software suite used by the robot application.
name (string) --
The name of the robot software suite.
version (string) --
The version of the robot software suite.
revisionId (string) --
The revision id of the robot application.
lastUpdatedAt (datetime) --
The time, in milliseconds since the epoch, when the robot application was last updated.
Describes a simulation application.
See also: AWS API Documentation
Request Syntax
response = client.describe_simulation_application(
application='string',
applicationVersion='string'
)
[REQUIRED]
The application information for the simulation application.
dict
Response Syntax
{
'arn': 'string',
'name': 'string',
'version': 'string',
'sources': [
{
's3Bucket': 'string',
's3Key': 'string',
'etag': 'string',
'architecture': 'X86_64'|'ARM64'|'ARMHF'
},
],
'simulationSoftwareSuite': {
'name': 'Gazebo',
'version': 'string'
},
'robotSoftwareSuite': {
'name': 'ROS',
'version': 'Kinetic'
},
'renderingEngine': {
'name': 'OGRE',
'version': 'string'
},
'revisionId': 'string',
'lastUpdatedAt': datetime(2015, 1, 1)
}
Response Structure
(dict) --
arn (string) --
The Amazon Resource Name (ARN) of the robot simulation application.
name (string) --
The name of the simulation application.
version (string) --
The version of the simulation application.
sources (list) --
The sources of the simulation application.
(dict) --
Information about a source.
s3Bucket (string) --
The s3 bucket name.
s3Key (string) --
The s3 object key.
etag (string) --
A hash of the object specified by s3Bucket and s3Key .
architecture (string) --
The taget processor architecture for the application.
simulationSoftwareSuite (dict) --
The simulation software suite used by the simulation application.
name (string) --
The name of the simulation software suite.
version (string) --
The version of the simulation software suite.
robotSoftwareSuite (dict) --
Information about the robot software suite.
name (string) --
The name of the robot software suite.
version (string) --
The version of the robot software suite.
renderingEngine (dict) --
The rendering engine for the simulation application.
name (string) --
The name of the rendering engine.
version (string) --
The version of the rendering engine.
revisionId (string) --
The revision id of the simulation application.
lastUpdatedAt (datetime) --
The time, in milliseconds since the epoch, when the simulation application was last updated.
Describes a simulation job.
See also: AWS API Documentation
Request Syntax
response = client.describe_simulation_job(
job='string'
)
[REQUIRED]
The Amazon Resource Name (ARN) of the simulation job to be described.
{
'arn': 'string',
'name': 'string',
'status': 'Pending'|'Preparing'|'Running'|'Restarting'|'Completed'|'Failed'|'RunningFailed'|'Terminating'|'Terminated'|'Canceled',
'lastUpdatedAt': datetime(2015, 1, 1),
'failureBehavior': 'Fail'|'Continue',
'failureCode': 'InternalServiceError'|'RobotApplicationCrash'|'SimulationApplicationCrash'|'BadPermissionsRobotApplication'|'BadPermissionsSimulationApplication'|'BadPermissionsS3Output'|'BadPermissionsCloudwatchLogs'|'SubnetIpLimitExceeded'|'ENILimitExceeded'|'BadPermissionsUserCredentials'|'InvalidBundleRobotApplication'|'InvalidBundleSimulationApplication'|'RobotApplicationVersionMismatchedEtag'|'SimulationApplicationVersionMismatchedEtag',
'clientRequestToken': 'string',
'outputLocation': {
's3Bucket': 'string',
's3Prefix': 'string'
},
'maxJobDurationInSeconds': 123,
'simulationTimeMillis': 123,
'iamRole': 'string',
'robotApplications': [
{
'application': 'string',
'applicationVersion': 'string',
'launchConfig': {
'packageName': 'string',
'launchFile': 'string',
'environmentVariables': {
'string': 'string'
}
}
},
],
'simulationApplications': [
{
'application': 'string',
'applicationVersion': 'string',
'launchConfig': {
'packageName': 'string',
'launchFile': 'string',
'environmentVariables': {
'string': 'string'
}
}
},
],
'vpcConfig': {
'subnets': [
'string',
],
'securityGroups': [
'string',
],
'vpcId': 'string',
'assignPublicIp': True|False
}
}
Response Structure
The Amazon Resource Name (ARN) of the simulation job.
The name of the simulation job.
The status of the simulation job.
The time, in milliseconds since the epoch, when the simulation job was last updated.
The failure behavior for the simulation job.
The failure code of the simulation job if it failed:
InternalServiceError
Internal service error
RobotApplicationCrash
Robot application exited abnormally (segfault, etc.)
SimulationApplicationCrash
Simulation application exited abnormally (segfault, etc.)
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, etc.)
InvalidBundleSimulationApplication
Simulation bundle cannot be extracted (invalid format, bundling error, etc.)
RobotApplicationVersionMismatchedEtag
Etag for RobotApplication does not match value during version creation
SimulationApplicationVersionMismatchedEtag
Etag for SimulationApplication does not match value during version creation
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
Location for output files generated by the simulation job.
The S3 bucket for output.
The S3 folder in the s3Bucket where output files will be placed.
The maximum job duration in seconds. The value must be 8 days (691,200 seconds) or less.
The simulation job execution duration in milliseconds.
The IAM role that allows the simulation instance to call the AWS APIs that are specified in its associated policies on your behalf.
A list of robot applications.
Application configuration information for a robot.
The application information for the robot application.
The version of the robot application.
The launch configuration for the robot application.
The package name.
The launch file.
The environment variables for the application launch.
A list of simulation applications.
Information about a simulation application configuration.
The application information for the simulation application.
The version of the simulation application.
The launch configuration for the simulation application.
The package name.
The launch file.
The environment variables for the application launch.
The VPC configuration.
A list of subnet IDs associated with the simulation job.
A list of security group IDs associated with the simulation job.
The VPC ID associated with your simulation job.
A boolean indicating if a public IP was assigned.
Generate a presigned url given a client, its method, and arguments
The presigned url
Create a paginator for an operation.
Returns an object that can wait for some condition.
Returns a list of deployment jobs for a fleet. You can optionally provide filters to retrieve specific deployment jobs.
See also: AWS API Documentation
Request Syntax
response = client.list_deployment_jobs(
filters=[
{
'name': 'string',
'values': [
'string',
]
},
],
nextToken='string',
maxResults=123
)
Optional filters to limit results.
Information about a filter.
The name of the filter.
A list of values.
The nextToken value returned from a previous paginated ListDeploymentJobs request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value.
Note
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.
dict
Response Syntax
{
'deploymentJobs': [
{
'arn': 'string',
'fleet': 'string',
'status': 'Pending'|'Preparing'|'InProgress'|'Failed'|'Succeeded',
'deploymentApplicationConfigs': [
{
'application': 'string',
'applicationVersion': 'string',
'launchConfig': {
'packageName': 'string',
'preLaunchFile': 'string',
'launchFile': 'string',
'postLaunchFile': 'string',
'environmentVariables': {
'string': 'string'
}
}
},
],
'deploymentConfig': {
'concurrentDeploymentPercentage': 123,
'failureThresholdPercentage': 123
},
'failureReason': 'string',
'failureCode': 'ResourceNotFound'|'FailureThresholdBreached'|'RobotDeploymentNoResponse'|'GreengrassDeploymentFailed'|'MissingRobotArchitecture'|'MissingRobotApplicationArchitecture'|'MissingRobotDeploymentResource'|'GreengrassGroupVersionDoesNotExist'|'ExtractingBundleFailure'|'PreLaunchFileFailure'|'PostLaunchFileFailure'|'BadPermissionError'|'InternalServerError',
'createdAt': datetime(2015, 1, 1)
},
],
'nextToken': 'string'
}
Response Structure
(dict) --
deploymentJobs (list) --
A list of deployment jobs that meet the criteria of the request.
(dict) --
Information about a deployment job.
arn (string) --
The Amazon Resource Name (ARN) of the deployment job.
fleet (string) --
The Amazon Resource Name (ARN) of the fleet.
status (string) --
The status of the deployment job.
deploymentApplicationConfigs (list) --
The deployment application configuration.
(dict) --
Information about a deployment application configuration.
application (string) --
The application.
applicationVersion (string) --
The version of the application.
launchConfig (dict) --
The launch configuration, usually roslaunch .
packageName (string) --
The package name.
preLaunchFile (string) --
The deployment pre-launch file. This file will be executed prior to the deployment launch file.
launchFile (string) --
The deployment launch file.
postLaunchFile (string) --
The deployment post-launch file. This file will be executed after the deployment launch file.
environmentVariables (dict) --
An array of key/value pairs specifying environment variables for the deployment application.
deploymentConfig (dict) --
The deployment configuration.
concurrentDeploymentPercentage (integer) --
The percentage of robots receiving the deployment at the same time.
failureThresholdPercentage (integer) --
The percentage of deployments that need to fail before stopping deployment.
failureReason (string) --
A short description of the reason why the deployment job failed.
failureCode (string) --
The deployment job failure code.
createdAt (datetime) --
The time, in milliseconds since the epoch, when the deployment job was created.
nextToken (string) --
The nextToken value to include in a future ListDeploymentJobs request. When the results of a ListDeploymentJobs request exceed maxResults , this value can be used to retrieve the next page of results. This value is null when there are no more results to return.
Returns a list of fleets. You can optionally provide filters to retrieve specific fleets.
See also: AWS API Documentation
Request Syntax
response = client.list_fleets(
nextToken='string',
maxResults=123,
filters=[
{
'name': 'string',
'values': [
'string',
]
},
]
)
The nextToken value returned from a previous paginated ListFleets request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value.
Note
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.
Optional filters to limit results.
Information about a filter.
The name of the filter.
A list of values.
dict
Response Syntax
{
'fleetDetails': [
{
'name': 'string',
'arn': 'string',
'createdAt': datetime(2015, 1, 1),
'lastDeploymentStatus': 'Pending'|'Preparing'|'InProgress'|'Failed'|'Succeeded',
'lastDeploymentJob': 'string',
'lastDeploymentTime': datetime(2015, 1, 1)
},
],
'nextToken': 'string'
}
Response Structure
(dict) --
fleetDetails (list) --
A list of fleet details meeting the request criteria.
(dict) --
Information about a fleet.
name (string) --
The name of the fleet.
arn (string) --
The Amazon Resource Name (ARN) of the fleet.
createdAt (datetime) --
The time, in milliseconds since the epoch, when the fleet was created.
lastDeploymentStatus (string) --
The status of the last fleet deployment.
lastDeploymentJob (string) --
The Amazon Resource Name (ARN) of the last deployment job.
lastDeploymentTime (datetime) --
The time of the last deployment.
nextToken (string) --
The nextToken value to include in a future ListDeploymentJobs request. When the results of a ListFleets request exceed maxResults , this value can be used to retrieve the next page of results. This value is null when there are no more results to return.
Returns a list of robot application. You can optionally provide filters to retrieve specific robot applications.
See also: AWS API Documentation
Request Syntax
response = client.list_robot_applications(
versionQualifier='string',
nextToken='string',
maxResults=123,
filters=[
{
'name': 'string',
'values': [
'string',
]
},
]
)
The nextToken value returned from a previous paginated ListRobotApplications request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value.
Note
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.
Optional filters to limit results.
Information about a filter.
The name of the filter.
A list of values.
dict
Response Syntax
{
'robotApplicationSummaries': [
{
'name': 'string',
'arn': 'string',
'version': 'string',
'lastUpdatedAt': datetime(2015, 1, 1)
},
],
'nextToken': 'string'
}
Response Structure
(dict) --
robotApplicationSummaries (list) --
A list of robot application summaries that meet the criteria of the request.
(dict) --
Summary information for a robot application.
name (string) --
The name of the robot application.
arn (string) --
The Amazon Resource Name (ARN) of the robot.
version (string) --
The version of the robot application.
lastUpdatedAt (datetime) --
The time, in milliseconds since the epoch, when the robot application was last updated.
nextToken (string) --
The nextToken value to include in a future ListRobotApplications request. When the results of a ListRobotApplications request exceed maxResults , this value can be used to retrieve the next page of results. This value is null when there are no more results to return.
Returns a list of robots. You can optionally provide filters to retrieve specific robots.
See also: AWS API Documentation
Request Syntax
response = client.list_robots(
nextToken='string',
maxResults=123,
filters=[
{
'name': 'string',
'values': [
'string',
]
},
]
)
The nextToken value returned from a previous paginated ListRobots request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value.
Note
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.
Optional filters to limit results.
Information about a filter.
The name of the filter.
A list of values.
dict
Response Syntax
{
'robots': [
{
'arn': 'string',
'name': 'string',
'fleetArn': 'string',
'status': 'Available'|'Registered'|'PendingNewDeployment'|'Deploying'|'Failed'|'InSync'|'NoResponse',
'greenGrassGroupId': 'string',
'createdAt': datetime(2015, 1, 1),
'architecture': 'X86_64'|'ARM64'|'ARMHF',
'lastDeploymentJob': 'string',
'lastDeploymentTime': datetime(2015, 1, 1)
},
],
'nextToken': 'string'
}
Response Structure
(dict) --
robots (list) --
A list of robots that meet the criteria of the request.
(dict) --
Information about a robot.
arn (string) --
The Amazon Resource Name (ARN) of the robot.
name (string) --
The name of the robot.
fleetArn (string) --
The Amazon Resource Name (ARN) of the fleet.
status (string) --
The status of the robot.
greenGrassGroupId (string) --
The Greengrass group associated with the robot.
createdAt (datetime) --
The time, in milliseconds since the epoch, when the robot was created.
architecture (string) --
The architecture of the robot.
lastDeploymentJob (string) --
The Amazon Resource Name (ARN) of the last deployment job.
lastDeploymentTime (datetime) --
The time of the last deployment.
nextToken (string) --
The nextToken value to include in a future ListRobots request. When the results of a ListRobot request exceed maxResults , this value can be used to retrieve the next page of results. This value is null when there are no more results to return.
Returns a list of simulation applications. You can optionally provide filters to retrieve specific simulation applications.
See also: AWS API Documentation
Request Syntax
response = client.list_simulation_applications(
versionQualifier='string',
nextToken='string',
maxResults=123,
filters=[
{
'name': 'string',
'values': [
'string',
]
},
]
)
The nextToken value returned from a previous paginated ListSimulationApplications request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value.
Note
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.
Optional list of filters to limit results. The only valid filter name is name .
Information about a filter.
The name of the filter.
A list of values.
dict
Response Syntax
{
'simulationApplicationSummaries': [
{
'name': 'string',
'arn': 'string',
'version': 'string',
'lastUpdatedAt': datetime(2015, 1, 1)
},
],
'nextToken': 'string'
}
Response Structure
(dict) --
simulationApplicationSummaries (list) --
A list of simulation application summaries that meet the criteria of the request.
(dict) --
Summary information for a simulation application.
name (string) --
The name of the simulation application.
arn (string) --
The Amazon Resource Name (ARN) of the simulation application.
version (string) --
The version of the simulation application.
lastUpdatedAt (datetime) --
The time, in milliseconds since the epoch, when the simulation application was last updated.
nextToken (string) --
The nextToken value to include in a future ListSimulationApplications request. When the results of a ListRobot request exceed maxResults , this value can be used to retrieve the next page of results. This value is null when there are no more results to return.
Returns a list of simulation jobs. You can optionally provide filters to retrieve specific simulation jobs.
See also: AWS API Documentation
Request Syntax
response = client.list_simulation_jobs(
nextToken='string',
maxResults=123,
filters=[
{
'name': 'string',
'values': [
'string',
]
},
]
)
The nextToken value returned from a previous paginated ListSimulationJobs request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value.
Note
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.
Optional filters to limit results.
Information about a filter.
The name of the filter.
A list of values.
dict
Response Syntax
{
'simulationJobSummaries': [
{
'arn': 'string',
'lastUpdatedAt': datetime(2015, 1, 1),
'name': 'string',
'status': 'Pending'|'Preparing'|'Running'|'Restarting'|'Completed'|'Failed'|'RunningFailed'|'Terminating'|'Terminated'|'Canceled',
'simulationApplicationNames': [
'string',
],
'robotApplicationNames': [
'string',
]
},
],
'nextToken': 'string'
}
Response Structure
(dict) --
simulationJobSummaries (list) --
A list of simulation job summaries that meet the criteria of the request.
(dict) --
Summary information for a simulation job.
arn (string) --
The Amazon Resource Name (ARN) of the simulation job.
lastUpdatedAt (datetime) --
The time, in milliseconds since the epoch, when the simulation job was last updated.
name (string) --
The name of the simulation job.
status (string) --
The status of the simulation job.
simulationApplicationNames (list) --
A list of simulation job simulation application names.
robotApplicationNames (list) --
A list of simulation job robot application names.
nextToken (string) --
The nextToken value to include in a future ListSimulationJobs request. When the results of a ListRobot request exceed maxResults , this value can be used to retrieve the next page of results. This value is null when there are no more results to return.
Registers a robot with a fleet.
See also: AWS API Documentation
Request Syntax
response = client.register_robot(
fleet='string',
robot='string'
)
[REQUIRED]
The Amazon Resource Name (ARN) of the fleet.
[REQUIRED]
The Amazon Resource Name (ARN) of the robot.
dict
Response Syntax
{
'fleet': 'string',
'robot': 'string'
}
Response Structure
(dict) --
fleet (string) --
The Amazon Resource Name (ARN) of the fleet that the robot will join.
robot (string) --
Information about the robot registration.
Restarts a running simulation job.
See also: AWS API Documentation
Request Syntax
response = client.restart_simulation_job(
job='string'
)
[REQUIRED]
The Amazon Resource Name (ARN) of the simulation job.
{}
Response Structure
Syncrhonizes robots in a fleet to the latest deployment. This is helpful if robots were added after a deployment.
See also: AWS API Documentation
Request Syntax
response = client.sync_deployment_job(
clientRequestToken='string',
fleet='string'
)
[REQUIRED]
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
This field is autopopulated if not provided.
[REQUIRED]
The target fleet for the synchronization.
dict
Response Syntax
{
'arn': 'string',
'fleet': 'string',
'status': 'Pending'|'Preparing'|'InProgress'|'Failed'|'Succeeded',
'deploymentConfig': {
'concurrentDeploymentPercentage': 123,
'failureThresholdPercentage': 123
},
'deploymentApplicationConfigs': [
{
'application': 'string',
'applicationVersion': 'string',
'launchConfig': {
'packageName': 'string',
'preLaunchFile': 'string',
'launchFile': 'string',
'postLaunchFile': 'string',
'environmentVariables': {
'string': 'string'
}
}
},
],
'failureReason': 'string',
'failureCode': 'ResourceNotFound'|'FailureThresholdBreached'|'RobotDeploymentNoResponse'|'GreengrassDeploymentFailed'|'MissingRobotArchitecture'|'MissingRobotApplicationArchitecture'|'MissingRobotDeploymentResource'|'GreengrassGroupVersionDoesNotExist'|'ExtractingBundleFailure'|'PreLaunchFileFailure'|'PostLaunchFileFailure'|'BadPermissionError'|'InternalServerError',
'createdAt': datetime(2015, 1, 1)
}
Response Structure
(dict) --
arn (string) --
The Amazon Resource Name (ARN) of the synchronization request.
fleet (string) --
The Amazon Resource Name (ARN) of the fleet.
status (string) --
The status of the synchronization job.
deploymentConfig (dict) --
Information about the deployment configuration.
concurrentDeploymentPercentage (integer) --
The percentage of robots receiving the deployment at the same time.
failureThresholdPercentage (integer) --
The percentage of deployments that need to fail before stopping deployment.
deploymentApplicationConfigs (list) --
Information about the deployment application configurations.
(dict) --
Information about a deployment application configuration.
application (string) --
The application.
applicationVersion (string) --
The version of the application.
launchConfig (dict) --
The launch configuration, usually roslaunch .
packageName (string) --
The package name.
preLaunchFile (string) --
The deployment pre-launch file. This file will be executed prior to the deployment launch file.
launchFile (string) --
The deployment launch file.
postLaunchFile (string) --
The deployment post-launch file. This file will be executed after the deployment launch file.
environmentVariables (dict) --
An array of key/value pairs specifying environment variables for the deployment application.
failureReason (string) --
The failure reason if the job fails.
failureCode (string) --
The failure code if the job fails.
createdAt (datetime) --
The time, in milliseconds since the epoch, when the fleet was created.
Updates a robot application.
See also: AWS API Documentation
Request Syntax
response = client.update_robot_application(
application='string',
sources=[
{
's3Bucket': 'string',
's3Key': 'string',
'architecture': 'X86_64'|'ARM64'|'ARMHF'
},
],
robotSoftwareSuite={
'name': 'ROS',
'version': 'Kinetic'
},
currentRevisionId='string'
)
[REQUIRED]
The application information for the robot application.
[REQUIRED]
The sources of the robot application.
Information about a source configuration.
The Amazon S3 bucket name.
The s3 object key.
The target processor architecture for the application.
[REQUIRED]
The robot software suite used by the robot application.
The name of the robot software suite.
The version of the robot software suite.
dict
Response Syntax
{
'arn': 'string',
'name': 'string',
'version': 'string',
'sources': [
{
's3Bucket': 'string',
's3Key': 'string',
'etag': 'string',
'architecture': 'X86_64'|'ARM64'|'ARMHF'
},
],
'robotSoftwareSuite': {
'name': 'ROS',
'version': 'Kinetic'
},
'lastUpdatedAt': datetime(2015, 1, 1),
'revisionId': 'string'
}
Response Structure
(dict) --
arn (string) --
The Amazon Resource Name (ARN) of the updated robot application.
name (string) --
The name of the robot application.
version (string) --
The version of the robot application.
sources (list) --
The sources of the robot application.
(dict) --
Information about a source.
s3Bucket (string) --
The s3 bucket name.
s3Key (string) --
The s3 object key.
etag (string) --
A hash of the object specified by s3Bucket and s3Key .
architecture (string) --
The taget processor architecture for the application.
robotSoftwareSuite (dict) --
The robot software suite used by the robot application.
name (string) --
The name of the robot software suite.
version (string) --
The version of the robot software suite.
lastUpdatedAt (datetime) --
The time, in milliseconds since the epoch, when the robot application was last updated.
revisionId (string) --
The revision id of the robot application.
Updates a simulation application.
See also: AWS API Documentation
Request Syntax
response = client.update_simulation_application(
application='string',
sources=[
{
's3Bucket': 'string',
's3Key': 'string',
'architecture': 'X86_64'|'ARM64'|'ARMHF'
},
],
simulationSoftwareSuite={
'name': 'Gazebo',
'version': 'string'
},
robotSoftwareSuite={
'name': 'ROS',
'version': 'Kinetic'
},
renderingEngine={
'name': 'OGRE',
'version': 'string'
},
currentRevisionId='string'
)
[REQUIRED]
The application information for the simulation application.
[REQUIRED]
The sources of the simulation application.
Information about a source configuration.
The Amazon S3 bucket name.
The s3 object key.
The target processor architecture for the application.
[REQUIRED]
The simulation software suite used by the simulation application.
The name of the simulation software suite.
The version of the simulation software suite.
[REQUIRED]
Information about the robot software suite.
The name of the robot software suite.
The version of the robot software suite.
[REQUIRED]
The rendering engine for the simulation application.
The name of the rendering engine.
The version of the rendering engine.
dict
Response Syntax
{
'arn': 'string',
'name': 'string',
'version': 'string',
'sources': [
{
's3Bucket': 'string',
's3Key': 'string',
'etag': 'string',
'architecture': 'X86_64'|'ARM64'|'ARMHF'
},
],
'simulationSoftwareSuite': {
'name': 'Gazebo',
'version': 'string'
},
'robotSoftwareSuite': {
'name': 'ROS',
'version': 'Kinetic'
},
'renderingEngine': {
'name': 'OGRE',
'version': 'string'
},
'lastUpdatedAt': datetime(2015, 1, 1),
'revisionId': 'string'
}
Response Structure
(dict) --
arn (string) --
The Amazon Resource Name (ARN) of the updated simulation application.
name (string) --
The name of the simulation application.
version (string) --
The version of the robot application.
sources (list) --
The sources of the simulation application.
(dict) --
Information about a source.
s3Bucket (string) --
The s3 bucket name.
s3Key (string) --
The s3 object key.
etag (string) --
A hash of the object specified by s3Bucket and s3Key .
architecture (string) --
The taget processor architecture for the application.
simulationSoftwareSuite (dict) --
The simulation software suite used by the simulation application.
name (string) --
The name of the simulation software suite.
version (string) --
The version of the simulation software suite.
robotSoftwareSuite (dict) --
Information about the robot software suite.
name (string) --
The name of the robot software suite.
version (string) --
The version of the robot software suite.
renderingEngine (dict) --
The rendering engine for the simulation application.
name (string) --
The name of the rendering engine.
version (string) --
The version of the rendering engine.
lastUpdatedAt (datetime) --
The time, in milliseconds since the epoch, when the simulation application was last updated.
revisionId (string) --
The revision id of the simulation application.
The available paginators are:
paginator = client.get_paginator('list_deployment_jobs')
Creates an iterator that will paginate through responses from RoboMaker.Client.list_deployment_jobs().
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
filters=[
{
'name': 'string',
'values': [
'string',
]
},
],
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
Optional filters to limit results.
Information about a filter.
The name of the filter.
A list of values.
A dictionary that provides parameters to control pagination.
The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.
The size of each page.
A token to specify where to start paginating. This is the NextToken from a previous response.
dict
Response Syntax
{
'deploymentJobs': [
{
'arn': 'string',
'fleet': 'string',
'status': 'Pending'|'Preparing'|'InProgress'|'Failed'|'Succeeded',
'deploymentApplicationConfigs': [
{
'application': 'string',
'applicationVersion': 'string',
'launchConfig': {
'packageName': 'string',
'preLaunchFile': 'string',
'launchFile': 'string',
'postLaunchFile': 'string',
'environmentVariables': {
'string': 'string'
}
}
},
],
'deploymentConfig': {
'concurrentDeploymentPercentage': 123,
'failureThresholdPercentage': 123
},
'failureReason': 'string',
'failureCode': 'ResourceNotFound'|'FailureThresholdBreached'|'RobotDeploymentNoResponse'|'GreengrassDeploymentFailed'|'MissingRobotArchitecture'|'MissingRobotApplicationArchitecture'|'MissingRobotDeploymentResource'|'GreengrassGroupVersionDoesNotExist'|'ExtractingBundleFailure'|'PreLaunchFileFailure'|'PostLaunchFileFailure'|'BadPermissionError'|'InternalServerError',
'createdAt': datetime(2015, 1, 1)
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
deploymentJobs (list) --
A list of deployment jobs that meet the criteria of the request.
(dict) --
Information about a deployment job.
arn (string) --
The Amazon Resource Name (ARN) of the deployment job.
fleet (string) --
The Amazon Resource Name (ARN) of the fleet.
status (string) --
The status of the deployment job.
deploymentApplicationConfigs (list) --
The deployment application configuration.
(dict) --
Information about a deployment application configuration.
application (string) --
The application.
applicationVersion (string) --
The version of the application.
launchConfig (dict) --
The launch configuration, usually roslaunch .
packageName (string) --
The package name.
preLaunchFile (string) --
The deployment pre-launch file. This file will be executed prior to the deployment launch file.
launchFile (string) --
The deployment launch file.
postLaunchFile (string) --
The deployment post-launch file. This file will be executed after the deployment launch file.
environmentVariables (dict) --
An array of key/value pairs specifying environment variables for the deployment application.
deploymentConfig (dict) --
The deployment configuration.
concurrentDeploymentPercentage (integer) --
The percentage of robots receiving the deployment at the same time.
failureThresholdPercentage (integer) --
The percentage of deployments that need to fail before stopping deployment.
failureReason (string) --
A short description of the reason why the deployment job failed.
failureCode (string) --
The deployment job failure code.
createdAt (datetime) --
The time, in milliseconds since the epoch, when the deployment job was created.
NextToken (string) --
A token to resume pagination.
paginator = client.get_paginator('list_fleets')
Creates an iterator that will paginate through responses from RoboMaker.Client.list_fleets().
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
filters=[
{
'name': 'string',
'values': [
'string',
]
},
],
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
Optional filters to limit results.
Information about a filter.
The name of the filter.
A list of values.
A dictionary that provides parameters to control pagination.
The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.
The size of each page.
A token to specify where to start paginating. This is the NextToken from a previous response.
dict
Response Syntax
{
'fleetDetails': [
{
'name': 'string',
'arn': 'string',
'createdAt': datetime(2015, 1, 1),
'lastDeploymentStatus': 'Pending'|'Preparing'|'InProgress'|'Failed'|'Succeeded',
'lastDeploymentJob': 'string',
'lastDeploymentTime': datetime(2015, 1, 1)
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
fleetDetails (list) --
A list of fleet details meeting the request criteria.
(dict) --
Information about a fleet.
name (string) --
The name of the fleet.
arn (string) --
The Amazon Resource Name (ARN) of the fleet.
createdAt (datetime) --
The time, in milliseconds since the epoch, when the fleet was created.
lastDeploymentStatus (string) --
The status of the last fleet deployment.
lastDeploymentJob (string) --
The Amazon Resource Name (ARN) of the last deployment job.
lastDeploymentTime (datetime) --
The time of the last deployment.
NextToken (string) --
A token to resume pagination.
paginator = client.get_paginator('list_robot_applications')
Creates an iterator that will paginate through responses from RoboMaker.Client.list_robot_applications().
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
versionQualifier='string',
filters=[
{
'name': 'string',
'values': [
'string',
]
},
],
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
Optional filters to limit results.
Information about a filter.
The name of the filter.
A list of values.
A dictionary that provides parameters to control pagination.
The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.
The size of each page.
A token to specify where to start paginating. This is the NextToken from a previous response.
dict
Response Syntax
{
'robotApplicationSummaries': [
{
'name': 'string',
'arn': 'string',
'version': 'string',
'lastUpdatedAt': datetime(2015, 1, 1)
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
robotApplicationSummaries (list) --
A list of robot application summaries that meet the criteria of the request.
(dict) --
Summary information for a robot application.
name (string) --
The name of the robot application.
arn (string) --
The Amazon Resource Name (ARN) of the robot.
version (string) --
The version of the robot application.
lastUpdatedAt (datetime) --
The time, in milliseconds since the epoch, when the robot application was last updated.
NextToken (string) --
A token to resume pagination.
paginator = client.get_paginator('list_robots')
Creates an iterator that will paginate through responses from RoboMaker.Client.list_robots().
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
filters=[
{
'name': 'string',
'values': [
'string',
]
},
],
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
Optional filters to limit results.
Information about a filter.
The name of the filter.
A list of values.
A dictionary that provides parameters to control pagination.
The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.
The size of each page.
A token to specify where to start paginating. This is the NextToken from a previous response.
dict
Response Syntax
{
'robots': [
{
'arn': 'string',
'name': 'string',
'fleetArn': 'string',
'status': 'Available'|'Registered'|'PendingNewDeployment'|'Deploying'|'Failed'|'InSync'|'NoResponse',
'greenGrassGroupId': 'string',
'createdAt': datetime(2015, 1, 1),
'architecture': 'X86_64'|'ARM64'|'ARMHF',
'lastDeploymentJob': 'string',
'lastDeploymentTime': datetime(2015, 1, 1)
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
robots (list) --
A list of robots that meet the criteria of the request.
(dict) --
Information about a robot.
arn (string) --
The Amazon Resource Name (ARN) of the robot.
name (string) --
The name of the robot.
fleetArn (string) --
The Amazon Resource Name (ARN) of the fleet.
status (string) --
The status of the robot.
greenGrassGroupId (string) --
The Greengrass group associated with the robot.
createdAt (datetime) --
The time, in milliseconds since the epoch, when the robot was created.
architecture (string) --
The architecture of the robot.
lastDeploymentJob (string) --
The Amazon Resource Name (ARN) of the last deployment job.
lastDeploymentTime (datetime) --
The time of the last deployment.
NextToken (string) --
A token to resume pagination.
paginator = client.get_paginator('list_simulation_applications')
Creates an iterator that will paginate through responses from RoboMaker.Client.list_simulation_applications().
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
versionQualifier='string',
filters=[
{
'name': 'string',
'values': [
'string',
]
},
],
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
Optional list of filters to limit results. The only valid filter name is name .
Information about a filter.
The name of the filter.
A list of values.
A dictionary that provides parameters to control pagination.
The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.
The size of each page.
A token to specify where to start paginating. This is the NextToken from a previous response.
dict
Response Syntax
{
'simulationApplicationSummaries': [
{
'name': 'string',
'arn': 'string',
'version': 'string',
'lastUpdatedAt': datetime(2015, 1, 1)
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
simulationApplicationSummaries (list) --
A list of simulation application summaries that meet the criteria of the request.
(dict) --
Summary information for a simulation application.
name (string) --
The name of the simulation application.
arn (string) --
The Amazon Resource Name (ARN) of the simulation application.
version (string) --
The version of the simulation application.
lastUpdatedAt (datetime) --
The time, in milliseconds since the epoch, when the simulation application was last updated.
NextToken (string) --
A token to resume pagination.
paginator = client.get_paginator('list_simulation_jobs')
Creates an iterator that will paginate through responses from RoboMaker.Client.list_simulation_jobs().
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
filters=[
{
'name': 'string',
'values': [
'string',
]
},
],
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
Optional filters to limit results.
Information about a filter.
The name of the filter.
A list of values.
A dictionary that provides parameters to control pagination.
The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.
The size of each page.
A token to specify where to start paginating. This is the NextToken from a previous response.
dict
Response Syntax
{
'simulationJobSummaries': [
{
'arn': 'string',
'lastUpdatedAt': datetime(2015, 1, 1),
'name': 'string',
'status': 'Pending'|'Preparing'|'Running'|'Restarting'|'Completed'|'Failed'|'RunningFailed'|'Terminating'|'Terminated'|'Canceled',
'simulationApplicationNames': [
'string',
],
'robotApplicationNames': [
'string',
]
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
simulationJobSummaries (list) --
A list of simulation job summaries that meet the criteria of the request.
(dict) --
Summary information for a simulation job.
arn (string) --
The Amazon Resource Name (ARN) of the simulation job.
lastUpdatedAt (datetime) --
The time, in milliseconds since the epoch, when the simulation job was last updated.
name (string) --
The name of the simulation job.
status (string) --
The status of the simulation job.
simulationApplicationNames (list) --
A list of simulation job simulation application names.
robotApplicationNames (list) --
A list of simulation job robot application names.
NextToken (string) --
A token to resume pagination.