Class: AWSCDK::IoTSiteWise::CfnGateway::SiemensIEProperty

Inherits:
Jsii::Struct
  • Object
show all
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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(iot_core_thing_name:) ⇒ SiemensIEProperty

Returns a new instance of SiemensIEProperty.

Parameters:

  • iot_core_thing_name (String)

    The name of the AWS IoT Thing for your AWS IoT SiteWise Edge gateway.



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_nameString (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_propertiesObject



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_jsiiObject



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