Class: AWSCDK::IoTSiteWise::CfnGateway::GreengrassProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::IoTSiteWise::CfnGateway::GreengrassProperty
- Defined in:
- io_t_site_wise/cfn_gateway.rb
Overview
Instance Attribute Summary collapse
- #group_arn ⇒ String readonly
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(group_arn:) ⇒ GreengrassProperty
constructor
A new instance of GreengrassProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(group_arn:) ⇒ GreengrassProperty
Returns a new instance of GreengrassProperty.
687 688 689 690 |
# File 'io_t_site_wise/cfn_gateway.rb', line 687 def initialize(group_arn:) @group_arn = group_arn Jsii::Type.check_type(@group_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "groupArn") end |
Instance Attribute Details
#group_arn ⇒ String (readonly)
694 695 696 |
# File 'io_t_site_wise/cfn_gateway.rb', line 694 def group_arn @group_arn end |
Class Method Details
.jsii_properties ⇒ Object
696 697 698 699 700 |
# File 'io_t_site_wise/cfn_gateway.rb', line 696 def self.jsii_properties { :group_arn => "groupArn", } end |
Instance Method Details
#to_jsii ⇒ Object
702 703 704 705 706 707 708 |
# File 'io_t_site_wise/cfn_gateway.rb', line 702 def to_jsii result = {} result.merge!({ "groupArn" => @group_arn, }) result.compact end |