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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnConfig.AntennaDownlinkDemodDecodeConfigProperty
static final class
An implementation forCfnConfig.AntennaDownlinkDemodDecodeConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDecodeConfig
Defines how the RF signal will be decoded.- See Also:
-
getDemodulationConfig
Defines how the RF signal will be demodulated.- See Also:
-
getSpectrumConfig
Defines the spectrum configuration.- See Also:
-
builder
-