interface EirpProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GroundStation.Mixins.CfnConfigPropsMixin.EirpProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgroundstation/mixins#CfnConfigPropsMixin_EirpProperty |
Java | software.amazon.awscdk.mixins.preview.services.groundstation.mixins.CfnConfigPropsMixin.EirpProperty |
Python | aws_cdk.mixins_preview.aws_groundstation.mixins.CfnConfigPropsMixin.EirpProperty |
TypeScript | @aws-cdk/mixins-preview » aws_groundstation » mixins » CfnConfigPropsMixin » EirpProperty |
Defines an equivalent isotropically radiated power (EIRP).
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 eirpProperty: groundstation_mixins.CfnConfigPropsMixin.EirpProperty = {
units: 'units',
value: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| units? | string | The units of the EIRP. |
| value? | number | The value of the EIRP. |
units?
Type:
string
(optional)
The units of the EIRP.
value?
Type:
number
(optional)
The value of the EIRP.
Valid values are between 20.0 to 50.0 dBW.

.NET
Go
Java
Python
TypeScript