interface FrequencyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.GroundStation.CfnConfig.FrequencyProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsgroundstation#CfnConfig_FrequencyProperty |
Java | software.amazon.awscdk.services.groundstation.CfnConfig.FrequencyProperty |
Python | aws_cdk.aws_groundstation.CfnConfig.FrequencyProperty |
TypeScript | aws-cdk-lib » aws_groundstation » CfnConfig » FrequencyProperty |
Defines a frequency.
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 frequencyProperty: groundstation.CfnConfig.FrequencyProperty = {
units: 'units',
value: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| units? | string | The units of the frequency. |
| value? | number | The value of the frequency. |
units?
Type:
string
(optional)
The units of the frequency.
value?
Type:
number
(optional)
The value of the frequency.
Valid values are between 2200 to 2300 MHz and 7750 to 8400 MHz for downlink and 2025 to 2120 MHz for uplink.

.NET
Go
Java
Python
TypeScript