interface CfnConfigMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GroundStation.Mixins.CfnConfigMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgroundstation/mixins#CfnConfigMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.groundstation.mixins.CfnConfigMixinProps |
Python | aws_cdk.mixins_preview.aws_groundstation.mixins.CfnConfigMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_groundstation » mixins » CfnConfigMixinProps |
Properties for CfnConfigPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html
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 cfnConfigMixinProps: groundstation_mixins.CfnConfigMixinProps = {
configData: {
antennaDownlinkConfig: {
spectrumConfig: {
bandwidth: {
units: 'units',
value: 123,
},
centerFrequency: {
units: 'units',
value: 123,
},
polarization: 'polarization',
},
},
antennaDownlinkDemodDecodeConfig: {
decodeConfig: {
unvalidatedJson: 'unvalidatedJson',
},
demodulationConfig: {
unvalidatedJson: 'unvalidatedJson',
},
spectrumConfig: {
bandwidth: {
units: 'units',
value: 123,
},
centerFrequency: {
units: 'units',
value: 123,
},
polarization: 'polarization',
},
},
antennaUplinkConfig: {
spectrumConfig: {
centerFrequency: {
units: 'units',
value: 123,
},
polarization: 'polarization',
},
targetEirp: {
units: 'units',
value: 123,
},
transmitDisabled: false,
},
dataflowEndpointConfig: {
dataflowEndpointName: 'dataflowEndpointName',
dataflowEndpointRegion: 'dataflowEndpointRegion',
},
s3RecordingConfig: {
bucketArn: 'bucketArn',
prefix: 'prefix',
roleArn: 'roleArn',
},
trackingConfig: {
autotrack: 'autotrack',
},
uplinkEchoConfig: {
antennaUplinkConfigArn: 'antennaUplinkConfigArn',
enabled: false,
},
},
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| config | IResolvable | Config | Object containing the parameters of a config. |
| name? | string | The name of the config object. |
| tags? | Cfn[] | Tags assigned to a resource. |
configData?
Type:
IResolvable | Config
(optional)
Object containing the parameters of a config.
Only one subtype may be specified per config. See the subtype definitions for a description of each config subtype.
name?
Type:
string
(optional)
The name of the config object.
tags?
Type:
Cfn[]
(optional)
Tags assigned to a resource.

.NET
Go
Java
Python
TypeScript