Class CfnConfig.AntennaDownlinkDemodDecodeConfigProperty
Provides information about how AWS Ground Station should configure an antenna for downlink during a contact.
Inherited Members
Namespace: Amazon.CDK.AWS.GroundStation
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnConfig.AntennaDownlinkDemodDecodeConfigProperty : CfnConfig.IAntennaDownlinkDemodDecodeConfigProperty
Syntax (vb)
Public Class CfnConfig.AntennaDownlinkDemodDecodeConfigProperty Implements CfnConfig.IAntennaDownlinkDemodDecodeConfigProperty
Remarks
Use an antenna downlink demod decode config in a mission profile to receive the downlink data that has been demodulated and decoded.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.GroundStation;
var antennaDownlinkDemodDecodeConfigProperty = new AntennaDownlinkDemodDecodeConfigProperty {
DecodeConfig = new DecodeConfigProperty {
UnvalidatedJson = "unvalidatedJson"
},
DemodulationConfig = new DemodulationConfigProperty {
UnvalidatedJson = "unvalidatedJson"
},
SpectrumConfig = new SpectrumConfigProperty {
Bandwidth = new FrequencyBandwidthProperty {
Units = "units",
Value = 123
},
CenterFrequency = new FrequencyProperty {
Units = "units",
Value = 123
},
Polarization = "polarization"
}
};
Synopsis
Constructors
| AntennaDownlinkDemodDecodeConfigProperty() | Provides information about how AWS Ground Station should configure an antenna for downlink during a contact. |
Properties
| DecodeConfig | Defines how the RF signal will be decoded. |
| DemodulationConfig | Defines how the RF signal will be demodulated. |
| SpectrumConfig | Defines the spectrum configuration. |
Constructors
AntennaDownlinkDemodDecodeConfigProperty()
Provides information about how AWS Ground Station should configure an antenna for downlink during a contact.
public AntennaDownlinkDemodDecodeConfigProperty()
Remarks
Use an antenna downlink demod decode config in a mission profile to receive the downlink data that has been demodulated and decoded.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.GroundStation;
var antennaDownlinkDemodDecodeConfigProperty = new AntennaDownlinkDemodDecodeConfigProperty {
DecodeConfig = new DecodeConfigProperty {
UnvalidatedJson = "unvalidatedJson"
},
DemodulationConfig = new DemodulationConfigProperty {
UnvalidatedJson = "unvalidatedJson"
},
SpectrumConfig = new SpectrumConfigProperty {
Bandwidth = new FrequencyBandwidthProperty {
Units = "units",
Value = 123
},
CenterFrequency = new FrequencyProperty {
Units = "units",
Value = 123
},
Polarization = "polarization"
}
};
Properties
DecodeConfig
Defines how the RF signal will be decoded.
public object? DecodeConfig { get; set; }
Property Value
Remarks
DemodulationConfig
Defines how the RF signal will be demodulated.
public object? DemodulationConfig { get; set; }
Property Value
Remarks
SpectrumConfig
Defines the spectrum configuration.
public object? SpectrumConfig { get; set; }