Interface CfnConfig.AntennaDownlinkDemodDecodeConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnConfig.AntennaDownlinkDemodDecodeConfigProperty.Jsii$Proxy
Enclosing class:
CfnConfig

@Stability(Stable) public static interface CfnConfig.AntennaDownlinkDemodDecodeConfigProperty extends software.amazon.jsii.JsiiSerializable
Provides information about how AWS Ground Station should configure an antenna for downlink during a contact.

Use an antenna downlink demod decode config in a mission profile to receive the downlink data that has been demodulated and decoded.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.groundstation.*;
 AntennaDownlinkDemodDecodeConfigProperty antennaDownlinkDemodDecodeConfigProperty = AntennaDownlinkDemodDecodeConfigProperty.builder()
         .decodeConfig(DecodeConfigProperty.builder()
                 .unvalidatedJson("unvalidatedJson")
                 .build())
         .demodulationConfig(DemodulationConfigProperty.builder()
                 .unvalidatedJson("unvalidatedJson")
                 .build())
         .spectrumConfig(SpectrumConfigProperty.builder()
                 .bandwidth(FrequencyBandwidthProperty.builder()
                         .units("units")
                         .value(123)
                         .build())
                 .centerFrequency(FrequencyProperty.builder()
                         .units("units")
                         .value(123)
                         .build())
                 .polarization("polarization")
                 .build())
         .build();
 

See Also: