aws-cdk-lib.aws_groundstation.CfnConfig.AntennaUplinkConfigProperty

interface AntennaUplinkConfigProperty

LanguageType name
.NETAmazon.CDK.AWS.GroundStation.CfnConfig.AntennaUplinkConfigProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsgroundstation#CfnConfig_AntennaUplinkConfigProperty
Javasoftware.amazon.awscdk.services.groundstation.CfnConfig.AntennaUplinkConfigProperty
Pythonaws_cdk.aws_groundstation.CfnConfig.AntennaUplinkConfigProperty
TypeScript aws-cdk-lib » aws_groundstation » CfnConfig » AntennaUplinkConfigProperty

Provides information about how AWS Ground Station should configure an antenna for uplink during a contact.

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-lib';
const antennaUplinkConfigProperty: groundstation.CfnConfig.AntennaUplinkConfigProperty = {
  spectrumConfig: {
    centerFrequency: {
      units: 'units',
      value: 123,
    },
    polarization: 'polarization',
  },
  targetEirp: {
    units: 'units',
    value: 123,
  },
  transmitDisabled: false,
};

Properties

NameTypeDescription
spectrumConfig?IResolvable | UplinkSpectrumConfigPropertyDefines the spectrum configuration.
targetEirp?IResolvable | EirpPropertyThe equivalent isotropically radiated power (EIRP) to use for uplink transmissions.
transmitDisabled?boolean | IResolvableWhether or not uplink transmit is disabled.

spectrumConfig?

Type: IResolvable | UplinkSpectrumConfigProperty (optional)

Defines the spectrum configuration.


targetEirp?

Type: IResolvable | EirpProperty (optional)

The equivalent isotropically radiated power (EIRP) to use for uplink transmissions.

Valid values are between 20.0 to 50.0 dBW.


transmitDisabled?

Type: boolean | IResolvable (optional)

Whether or not uplink transmit is disabled.