interface RobotSoftwareSuiteProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RoboMaker.Mixins.CfnSimulationApplicationPropsMixin.RobotSoftwareSuiteProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrobomaker/mixins#CfnSimulationApplicationPropsMixin_RobotSoftwareSuiteProperty |
Java | software.amazon.awscdk.mixins.preview.services.robomaker.mixins.CfnSimulationApplicationPropsMixin.RobotSoftwareSuiteProperty |
Python | aws_cdk.mixins_preview.aws_robomaker.mixins.CfnSimulationApplicationPropsMixin.RobotSoftwareSuiteProperty |
TypeScript | @aws-cdk/mixins-preview » aws_robomaker » mixins » CfnSimulationApplicationPropsMixin » RobotSoftwareSuiteProperty |
Information about a robot software suite.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as robomaker_mixins } from '@aws-cdk/mixins-preview/aws-robomaker';
const robotSoftwareSuiteProperty: robomaker_mixins.CfnSimulationApplicationPropsMixin.RobotSoftwareSuiteProperty = {
name: 'name',
version: 'version',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the robot software suite. |
| version? | string | The version of the robot software suite. |
name?
Type:
string
(optional)
The name of the robot software suite.
General is the only supported value.
version?
Type:
string
(optional)
The version of the robot software suite.
Not applicable for General software suite.

.NET
Go
Java
Python
TypeScript