Class: AWSCDK::IoTWireless::CfnPartnerAccount::SidewalkUpdateAccountProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
io_t_wireless/cfn_partner_account.rb

Overview

Sidewalk update.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(app_server_private_key: nil) ⇒ SidewalkUpdateAccountProperty

Returns a new instance of SidewalkUpdateAccountProperty.

Parameters:

  • app_server_private_key (String, nil) (defaults to: nil)

    The new Sidewalk application server private key.



696
697
698
699
# File 'io_t_wireless/cfn_partner_account.rb', line 696

def initialize(app_server_private_key: nil)
  @app_server_private_key = app_server_private_key
  Jsii::Type.check_type(@app_server_private_key, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "appServerPrivateKey") unless @app_server_private_key.nil?
end

Instance Attribute Details

#app_server_private_keyString? (readonly)

The new Sidewalk application server private key.



705
706
707
# File 'io_t_wireless/cfn_partner_account.rb', line 705

def app_server_private_key
  @app_server_private_key
end

Class Method Details

.jsii_propertiesObject



707
708
709
710
711
# File 'io_t_wireless/cfn_partner_account.rb', line 707

def self.jsii_properties
  {
    :app_server_private_key => "appServerPrivateKey",
  }
end

Instance Method Details

#to_jsiiObject



713
714
715
716
717
718
719
# File 'io_t_wireless/cfn_partner_account.rb', line 713

def to_jsii
  result = {}
  result.merge!({
    "appServerPrivateKey" => @app_server_private_key,
  })
  result.compact
end