interface SimulationSoftwareSuiteProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.RoboMaker.CfnSimulationApplicationPropsMixin.SimulationSoftwareSuiteProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsrobomaker#CfnSimulationApplicationPropsMixin_SimulationSoftwareSuiteProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.robomaker.CfnSimulationApplicationPropsMixin.SimulationSoftwareSuiteProperty |
Python | aws_cdk.cfn_property_mixins.aws_robomaker.CfnSimulationApplicationPropsMixin.SimulationSoftwareSuiteProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_robomaker » 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 { aws_robomaker as robomaker } from '@aws-cdk/cfn-property-mixins';
const simulationSoftwareSuiteProperty: robomaker.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