aws-cdk-lib.aws_robomaker.CfnSimulationApplicationProps

interface CfnSimulationApplicationProps

LanguageType name
.NETAmazon.CDK.AWS.RoboMaker.CfnSimulationApplicationProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsrobomaker#CfnSimulationApplicationProps
Javasoftware.amazon.awscdk.services.robomaker.CfnSimulationApplicationProps
Pythonaws_cdk.aws_robomaker.CfnSimulationApplicationProps
TypeScript aws-cdk-lib » aws_robomaker » CfnSimulationApplicationProps

Properties for defining a CfnSimulationApplication.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_robomaker as robomaker } from 'aws-cdk-lib';
const cfnSimulationApplicationProps: robomaker.CfnSimulationApplicationProps = {
  robotSoftwareSuite: {
    name: 'name',

    // the properties below are optional
    version: 'version',
  },
  simulationSoftwareSuite: {
    name: 'name',

    // the properties below are optional
    version: 'version',
  },

  // the properties below are optional
  currentRevisionId: 'currentRevisionId',
  environment: 'environment',
  name: 'name',
  renderingEngine: {
    name: 'name',
    version: 'version',
  },
  sources: [{
    architecture: 'architecture',
    s3Bucket: 's3Bucket',
    s3Key: 's3Key',
  }],
  tags: {
    tagsKey: 'tags',
  },
};

Properties

NameTypeDescription
robotSoftwareSuiteIResolvable | RobotSoftwareSuitePropertyThe robot software suite used by the simulation application.
simulationSoftwareSuiteIResolvable | SimulationSoftwareSuitePropertyThe simulation software suite used by the simulation application.
currentRevisionId?stringThe current revision id.
environment?stringThe environment of the simulation application.
name?stringThe name of the simulation application.
renderingEngine?IResolvable | RenderingEnginePropertyThe rendering engine for the simulation application.
sources?IResolvable | IResolvable | SourceConfigProperty[]The sources of the simulation application.
tags?{ [string]: string }A map that contains tag keys and tag values that are attached to the simulation application.

robotSoftwareSuite

Type: IResolvable | RobotSoftwareSuiteProperty

The robot software suite used by the simulation application.


simulationSoftwareSuite

Type: IResolvable | SimulationSoftwareSuiteProperty

The simulation software suite used by the simulation application.


currentRevisionId?

Type: string (optional)

The current revision id.


environment?

Type: string (optional)

The environment of the simulation application.


name?

Type: string (optional)

The name of the simulation application.


renderingEngine?

Type: IResolvable | RenderingEngineProperty (optional)

The rendering engine for the simulation application.


sources?

Type: IResolvable | IResolvable | SourceConfigProperty[] (optional)

The sources of the simulation application.


tags?

Type: { [string]: string } (optional)

A map that contains tag keys and tag values that are attached to the simulation application.