package awsrobomaker // 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 "github.com/aws/aws-cdk-go/awscdk" // // renderingEngineProperty := &RenderingEngineProperty{ // Name: jsii.String("name"), // Version: jsii.String("version"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-renderingengine.html // type CfnSimulationApplication_RenderingEngineProperty struct { // The name of the rendering engine. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-renderingengine.html#cfn-robomaker-simulationapplication-renderingengine-name // Name *string `field:"required" json:"name" yaml:"name"` // The version of the rendering engine. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-renderingengine.html#cfn-robomaker-simulationapplication-renderingengine-version // Version *string `field:"required" json:"version" yaml:"version"` }