interface SimulationSoftwareSuiteProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RoboMaker.Mixins.CfnSimulationApplicationPropsMixin.SimulationSoftwareSuiteProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrobomaker/mixins#CfnSimulationApplicationPropsMixin_SimulationSoftwareSuiteProperty |
Java | software.amazon.awscdk.mixins.preview.services.robomaker.mixins.CfnSimulationApplicationPropsMixin.SimulationSoftwareSuiteProperty |
Python | aws_cdk.mixins_preview.aws_robomaker.mixins.CfnSimulationApplicationPropsMixin.SimulationSoftwareSuiteProperty |
TypeScript | @aws-cdk/mixins-preview » aws_robomaker » mixins » CfnSimulationApplicationPropsMixin » SimulationSoftwareSuiteProperty |
Information about a simulation 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 simulationSoftwareSuiteProperty: robomaker_mixins.CfnSimulationApplicationPropsMixin.SimulationSoftwareSuiteProperty = {
name: 'name',
version: 'version',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the simulation software suite. |
| version? | string | The version of the simulation software suite. |
name?
Type:
string
(optional)
The name of the simulation software suite.
SimulationRuntime is the only supported value.
version?
Type:
string
(optional)
The version of the simulation software suite.
Not applicable for SimulationRuntime .

.NET
Go
Java
Python
TypeScript