Interface CfnConfigProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfigProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:02.643Z")
@Stability(Stable)
public interface CfnConfigProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnConfig
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.groundstation.*; CfnConfigProps cfnConfigProps = CfnConfigProps.builder() .configData(ConfigDataProperty.builder() .antennaDownlinkConfig(AntennaDownlinkConfigProperty.builder() .spectrumConfig(SpectrumConfigProperty.builder() .bandwidth(FrequencyBandwidthProperty.builder() .units("units") .value(123) .build()) .centerFrequency(FrequencyProperty.builder() .units("units") .value(123) .build()) .polarization("polarization") .build()) .build()) .antennaDownlinkDemodDecodeConfig(AntennaDownlinkDemodDecodeConfigProperty.builder() .decodeConfig(DecodeConfigProperty.builder() .unvalidatedJson("unvalidatedJson") .build()) .demodulationConfig(DemodulationConfigProperty.builder() .unvalidatedJson("unvalidatedJson") .build()) .spectrumConfig(SpectrumConfigProperty.builder() .bandwidth(FrequencyBandwidthProperty.builder() .units("units") .value(123) .build()) .centerFrequency(FrequencyProperty.builder() .units("units") .value(123) .build()) .polarization("polarization") .build()) .build()) .antennaUplinkConfig(AntennaUplinkConfigProperty.builder() .spectrumConfig(UplinkSpectrumConfigProperty.builder() .centerFrequency(FrequencyProperty.builder() .units("units") .value(123) .build()) .polarization("polarization") .build()) .targetEirp(EirpProperty.builder() .units("units") .value(123) .build()) .transmitDisabled(false) .build()) .dataflowEndpointConfig(DataflowEndpointConfigProperty.builder() .dataflowEndpointName("dataflowEndpointName") .dataflowEndpointRegion("dataflowEndpointRegion") .build()) .s3RecordingConfig(S3RecordingConfigProperty.builder() .bucketArn("bucketArn") .prefix("prefix") .roleArn("roleArn") .build()) .trackingConfig(TrackingConfigProperty.builder() .autotrack("autotrack") .build()) .uplinkEchoConfig(UplinkEchoConfigProperty.builder() .antennaUplinkConfigArn("antennaUplinkConfigArn") .enabled(false) .build()) .build()) .name("name") // the properties below are optional .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnConfigProps
static final class
An implementation forCfnConfigProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnConfigProps.Builder
builder()
Object containing the parameters of a config.getName()
The name of the config object.getTags()
Tags assigned to a resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConfigData
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.
- See Also:
-
getName
The name of the config object.- See Also:
-
getTags
Tags assigned to a resource.- See Also:
-
builder
- Returns:
- a
CfnConfigProps.Builder
ofCfnConfigProps
-