Class: AWSCDK::RoboMaker::CfnSimulationApplication::SimulationSoftwareSuiteProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::RoboMaker::CfnSimulationApplication::SimulationSoftwareSuiteProperty
- Defined in:
- robo_maker/cfn_simulation_application.rb
Overview
Information about a simulation software suite.
Instance Attribute Summary collapse
-
#name ⇒ String
readonly
The name of the simulation software suite.
-
#version ⇒ String?
readonly
The version of the simulation software suite.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(name:, version: nil) ⇒ SimulationSoftwareSuiteProperty
constructor
A new instance of SimulationSoftwareSuiteProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(name:, version: nil) ⇒ SimulationSoftwareSuiteProperty
Returns a new instance of SimulationSoftwareSuiteProperty.
709 710 711 712 713 714 |
# File 'robo_maker/cfn_simulation_application.rb', line 709 def initialize(name:, version: nil) @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") unless @version.nil? end |
Instance Attribute Details
#name ⇒ String (readonly)
The name of the simulation software suite.
SimulationRuntime is the only supported value.
722 723 724 |
# File 'robo_maker/cfn_simulation_application.rb', line 722 def name @name end |
#version ⇒ String? (readonly)
The version of the simulation software suite.
Not applicable for SimulationRuntime .
729 730 731 |
# File 'robo_maker/cfn_simulation_application.rb', line 729 def version @version end |
Class Method Details
.jsii_properties ⇒ Object
731 732 733 734 735 736 |
# File 'robo_maker/cfn_simulation_application.rb', line 731 def self.jsii_properties { :name => "name", :version => "version", } end |
Instance Method Details
#to_jsii ⇒ Object
738 739 740 741 742 743 744 745 |
# File 'robo_maker/cfn_simulation_application.rb', line 738 def to_jsii result = {} result.merge!({ "name" => @name, "version" => @version, }) result.compact end |