interface AntennaDownlinkDemodDecodeConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GroundStation.Mixins.CfnConfigPropsMixin.AntennaDownlinkDemodDecodeConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgroundstation/mixins#CfnConfigPropsMixin_AntennaDownlinkDemodDecodeConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.groundstation.mixins.CfnConfigPropsMixin.AntennaDownlinkDemodDecodeConfigProperty |
Python | aws_cdk.mixins_preview.aws_groundstation.mixins.CfnConfigPropsMixin.AntennaDownlinkDemodDecodeConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_groundstation » mixins » CfnConfigPropsMixin » AntennaDownlinkDemodDecodeConfigProperty |
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 { mixins as groundstation_mixins } from '@aws-cdk/mixins-preview/aws-groundstation';
const antennaDownlinkDemodDecodeConfigProperty: groundstation_mixins.CfnConfigPropsMixin.AntennaDownlinkDemodDecodeConfigProperty = {
decodeConfig: {
unvalidatedJson: 'unvalidatedJson',
},
demodulationConfig: {
unvalidatedJson: 'unvalidatedJson',
},
spectrumConfig: {
bandwidth: {
units: 'units',
value: 123,
},
centerFrequency: {
units: 'units',
value: 123,
},
polarization: 'polarization',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| decode | IResolvable | Decode | Defines how the RF signal will be decoded. |
| demodulation | IResolvable | Demodulation | Defines how the RF signal will be demodulated. |
| spectrum | IResolvable | Spectrum | Defines the spectrum configuration. |
decodeConfig?
Type:
IResolvable | Decode
(optional)
Defines how the RF signal will be decoded.
demodulationConfig?
Type:
IResolvable | Demodulation
(optional)
Defines how the RF signal will be demodulated.
spectrumConfig?
Type:
IResolvable | Spectrum
(optional)
Defines the spectrum configuration.

.NET
Go
Java
Python
TypeScript