Class: AWSCDK::IoTSiteWise::CfnGateway::GreengrassProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
io_t_site_wise/cfn_gateway.rb

Overview

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(group_arn:) ⇒ GreengrassProperty

Returns a new instance of GreengrassProperty.

Parameters:

  • group_arn (String)


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_arnString (readonly)



694
695
696
# File 'io_t_site_wise/cfn_gateway.rb', line 694

def group_arn
  @group_arn
end

Class Method Details

.jsii_propertiesObject



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_jsiiObject



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