interface AntennaDownlinkConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.GroundStation.CfnConfigPropsMixin.AntennaDownlinkConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsgroundstation#CfnConfigPropsMixin_AntennaDownlinkConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.groundstation.CfnConfigPropsMixin.AntennaDownlinkConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_groundstation.CfnConfigPropsMixin.AntennaDownlinkConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_groundstation » CfnConfigPropsMixin » AntennaDownlinkConfigProperty |
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.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_groundstation as groundstation } from '@aws-cdk/cfn-property-mixins';
const antennaDownlinkConfigProperty: groundstation.CfnConfigPropsMixin.AntennaDownlinkConfigProperty = {
spectrumConfig: {
bandwidth: {
units: 'units',
value: 123,
},
centerFrequency: {
units: 'units',
value: 123,
},
polarization: 'polarization',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| spectrum | IResolvable | Spectrum | Defines the spectrum configuration. |
spectrumConfig?
Type:
IResolvable | Spectrum
(optional)
Defines the spectrum configuration.

.NET
Go
Java
Python
TypeScript