interface RenderingEngineProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RoboMaker.Mixins.CfnSimulationApplicationPropsMixin.RenderingEngineProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrobomaker/mixins#CfnSimulationApplicationPropsMixin_RenderingEngineProperty |
Java | software.amazon.awscdk.mixins.preview.services.robomaker.mixins.CfnSimulationApplicationPropsMixin.RenderingEngineProperty |
Python | aws_cdk.mixins_preview.aws_robomaker.mixins.CfnSimulationApplicationPropsMixin.RenderingEngineProperty |
TypeScript | @aws-cdk/mixins-preview » aws_robomaker » mixins » CfnSimulationApplicationPropsMixin » RenderingEngineProperty |
Information about a rendering engine.
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 renderingEngineProperty: robomaker_mixins.CfnSimulationApplicationPropsMixin.RenderingEngineProperty = {
name: 'name',
version: 'version',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the rendering engine. |
| version? | string | The version of the rendering engine. |
name?
Type:
string
(optional)
The name of the rendering engine.
version?
Type:
string
(optional)
The version of the rendering engine.

.NET
Go
Java
Python
TypeScript