Class: AWSCDK::RoboMaker::CfnSimulationApplication::RenderingEngineProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::RoboMaker::CfnSimulationApplication::RenderingEngineProperty
- Defined in:
- robo_maker/cfn_simulation_application.rb
Overview
Information about a rendering engine.
Instance Attribute Summary collapse
-
#name ⇒ String
readonly
The name of the rendering engine.
-
#version ⇒ String
readonly
The version of the rendering engine.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(name:, version:) ⇒ RenderingEngineProperty
constructor
A new instance of RenderingEngineProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(name:, version:) ⇒ RenderingEngineProperty
Returns a new instance of RenderingEngineProperty.
619 620 621 622 623 624 |
# File 'robo_maker/cfn_simulation_application.rb', line 619 def initialize(name:, version:) @name = name Jsii::Type.check_type(@name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "name") @version = version Jsii::Type.check_type(@version, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "version") end |
Instance Attribute Details
#name ⇒ String (readonly)
The name of the rendering engine.
630 631 632 |
# File 'robo_maker/cfn_simulation_application.rb', line 630 def name @name end |
#version ⇒ String (readonly)
The version of the rendering engine.
635 636 637 |
# File 'robo_maker/cfn_simulation_application.rb', line 635 def version @version end |
Class Method Details
.jsii_properties ⇒ Object
637 638 639 640 641 642 |
# File 'robo_maker/cfn_simulation_application.rb', line 637 def self.jsii_properties { :name => "name", :version => "version", } end |
Instance Method Details
#to_jsii ⇒ Object
644 645 646 647 648 649 650 651 |
# File 'robo_maker/cfn_simulation_application.rb', line 644 def to_jsii result = {} result.merge!({ "name" => @name, "version" => @version, }) result.compact end |