Class: AWSCDK::RoboMaker::CfnSimulationApplication::RenderingEngineProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
robo_maker/cfn_simulation_application.rb

Overview

Information about a rendering engine.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name:, version:) ⇒ RenderingEngineProperty

Returns a new instance of RenderingEngineProperty.

Parameters:

  • name (String)

    The name of the rendering engine.

  • version (String)

    The version of the rendering engine.



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

#nameString (readonly)

The name of the rendering engine.



630
631
632
# File 'robo_maker/cfn_simulation_application.rb', line 630

def name
  @name
end

#versionString (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_propertiesObject



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_jsiiObject



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