Class: AWSCDK::GroundStation::CfnConfig::AntennaDownlinkConfigProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::GroundStation::CfnConfig::AntennaDownlinkConfigProperty
- Defined in:
- ground_station/cfn_config.rb
Overview
Provides information about how AWS Ground Station should configure an antenna for downlink during a contact.
Use an antenna downlink config in a mission profile to receive the downlink data in raw DigIF format.
Instance Attribute Summary collapse
-
#spectrum_config ⇒ AWSCDK::IResolvable, ...
readonly
Defines the spectrum configuration.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(spectrum_config: nil) ⇒ AntennaDownlinkConfigProperty
constructor
A new instance of AntennaDownlinkConfigProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(spectrum_config: nil) ⇒ AntennaDownlinkConfigProperty
Returns a new instance of AntennaDownlinkConfigProperty.
564 565 566 567 |
# File 'ground_station/cfn_config.rb', line 564 def initialize(spectrum_config: nil) @spectrum_config = spectrum_config.is_a?(Hash) ? ::AWSCDK::GroundStation::CfnConfig::SpectrumConfigProperty.new(**spectrum_config.transform_keys(&:to_sym)) : spectrum_config Jsii::Type.check_type(@spectrum_config, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19ncm91bmRzdGF0aW9uLkNmbkNvbmZpZy5TcGVjdHJ1bUNvbmZpZ1Byb3BlcnR5In1dfX0=")), "spectrumConfig") unless @spectrum_config.nil? end |
Instance Attribute Details
#spectrum_config ⇒ AWSCDK::IResolvable, ... (readonly)
Defines the spectrum configuration.
573 574 575 |
# File 'ground_station/cfn_config.rb', line 573 def spectrum_config @spectrum_config end |
Class Method Details
.jsii_properties ⇒ Object
575 576 577 578 579 |
# File 'ground_station/cfn_config.rb', line 575 def self.jsii_properties { :spectrum_config => "spectrumConfig", } end |
Instance Method Details
#to_jsii ⇒ Object
581 582 583 584 585 586 587 |
# File 'ground_station/cfn_config.rb', line 581 def to_jsii result = {} result.merge!({ "spectrumConfig" => @spectrum_config, }) result.compact end |