Class: AWSCDK::GroundStation::CfnConfig::FrequencyBandwidthProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
ground_station/cfn_config.rb

Overview

Defines a bandwidth.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(units: nil, value: nil) ⇒ FrequencyBandwidthProperty

Returns a new instance of FrequencyBandwidthProperty.

Parameters:

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

    The units of the bandwidth.

  • value (Numeric, nil) (defaults to: nil)

    The value of the bandwidth. AWS Ground Station currently has the following bandwidth limitations:.



979
980
981
982
983
984
# File 'ground_station/cfn_config.rb', line 979

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

Instance Attribute Details

#unitsString? (readonly)

The units of the bandwidth.



990
991
992
# File 'ground_station/cfn_config.rb', line 990

def units
  @units
end

#valueNumeric? (readonly)

The value of the bandwidth. AWS Ground Station currently has the following bandwidth limitations:.

  • For AntennaDownlinkDemodDecodeconfig , valid values are between 125 kHz to 650 MHz.
  • For AntennaDownlinkconfig , valid values are between 10 kHz to 54 MHz.
  • For AntennaUplinkConfig , valid values are between 10 kHz to 54 MHz.


999
1000
1001
# File 'ground_station/cfn_config.rb', line 999

def value
  @value
end

Class Method Details

.jsii_propertiesObject



1001
1002
1003
1004
1005
1006
# File 'ground_station/cfn_config.rb', line 1001

def self.jsii_properties
  {
    :units => "units",
    :value => "value",
  }
end

Instance Method Details

#to_jsiiObject



1008
1009
1010
1011
1012
1013
1014
1015
# File 'ground_station/cfn_config.rb', line 1008

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