Class: AWSCDK::GroundStation::CfnConfig::AntennaDownlinkConfigProperty

Inherits:
Jsii::Struct
  • Object
show all
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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(spectrum_config: nil) ⇒ AntennaDownlinkConfigProperty

Returns a new instance of AntennaDownlinkConfigProperty.

Parameters:



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_configAWSCDK::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_propertiesObject



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_jsiiObject



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