Class: AWSCDK::IoTWireless::CfnFuotaTask::LoRaWANProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::IoTWireless::CfnFuotaTask::LoRaWANProperty
- Defined in:
- io_t_wireless/cfn_fuota_task.rb
Overview
The LoRaWAN information used with a FUOTA task.
Instance Attribute Summary collapse
-
#rf_region ⇒ String
readonly
The frequency band (RFRegion) value.
-
#start_time ⇒ String?
readonly
Start time of a FUOTA task.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(rf_region:, start_time: nil) ⇒ LoRaWANProperty
constructor
A new instance of LoRaWANProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(rf_region:, start_time: nil) ⇒ LoRaWANProperty
Returns a new instance of LoRaWANProperty.
686 687 688 689 690 691 |
# File 'io_t_wireless/cfn_fuota_task.rb', line 686 def initialize(rf_region:, start_time: nil) @rf_region = rf_region Jsii::Type.check_type(@rf_region, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "rfRegion") @start_time = start_time Jsii::Type.check_type(@start_time, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "startTime") unless @start_time.nil? end |
Instance Attribute Details
#rf_region ⇒ String (readonly)
The frequency band (RFRegion) value.
697 698 699 |
# File 'io_t_wireless/cfn_fuota_task.rb', line 697 def rf_region @rf_region end |
#start_time ⇒ String? (readonly)
Start time of a FUOTA task.
702 703 704 |
# File 'io_t_wireless/cfn_fuota_task.rb', line 702 def start_time @start_time end |
Class Method Details
.jsii_properties ⇒ Object
704 705 706 707 708 709 |
# File 'io_t_wireless/cfn_fuota_task.rb', line 704 def self.jsii_properties { :rf_region => "rfRegion", :start_time => "startTime", } end |
Instance Method Details
#to_jsii ⇒ Object
711 712 713 714 715 716 717 718 |
# File 'io_t_wireless/cfn_fuota_task.rb', line 711 def to_jsii result = {} result.merge!({ "rfRegion" => @rf_region, "startTime" => @start_time, }) result.compact end |