Class: AWSCDK::IoTSiteWise::CfnGateway::SiemensIEProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::IoTSiteWise::CfnGateway::SiemensIEProperty
- Defined in:
- io_t_site_wise/cfn_gateway.rb
Overview
Contains details for a AWS IoT SiteWise Edge gateway that runs on a Siemens Industrial Edge Device.
Instance Attribute Summary collapse
-
#iot_core_thing_name ⇒ String
readonly
The name of the AWS IoT Thing for your AWS IoT SiteWise Edge gateway.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(iot_core_thing_name:) ⇒ SiemensIEProperty
constructor
A new instance of SiemensIEProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(iot_core_thing_name:) ⇒ SiemensIEProperty
Returns a new instance of SiemensIEProperty.
763 764 765 766 |
# File 'io_t_site_wise/cfn_gateway.rb', line 763 def initialize(iot_core_thing_name:) @iot_core_thing_name = iot_core_thing_name Jsii::Type.check_type(@iot_core_thing_name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "iotCoreThingName") end |
Instance Attribute Details
#iot_core_thing_name ⇒ String (readonly)
The name of the AWS IoT Thing for your AWS IoT SiteWise Edge gateway.
772 773 774 |
# File 'io_t_site_wise/cfn_gateway.rb', line 772 def iot_core_thing_name @iot_core_thing_name end |
Class Method Details
.jsii_properties ⇒ Object
774 775 776 777 778 |
# File 'io_t_site_wise/cfn_gateway.rb', line 774 def self.jsii_properties { :iot_core_thing_name => "iotCoreThingName", } end |
Instance Method Details
#to_jsii ⇒ Object
780 781 782 783 784 785 786 |
# File 'io_t_site_wise/cfn_gateway.rb', line 780 def to_jsii result = {} result.merge!({ "iotCoreThingName" => @iot_core_thing_name, }) result.compact end |