Interface CfnDataflowEndpointGroupV2PropsMixin.UplinkDataflowDetailsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataflowEndpointGroupV2PropsMixin.UplinkDataflowDetailsProperty.Jsii$Proxy
- Enclosing class:
CfnDataflowEndpointGroupV2PropsMixin
@Stability(Stable)
public static interface CfnDataflowEndpointGroupV2PropsMixin.UplinkDataflowDetailsProperty
extends software.amazon.jsii.JsiiSerializable
Dataflow details for an uplink endpoint.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.groundstation.*;
UplinkDataflowDetailsProperty uplinkDataflowDetailsProperty = UplinkDataflowDetailsProperty.builder()
.agentConnectionDetails(UplinkConnectionDetailsProperty.builder()
.agentIpAndPortAddress(RangedConnectionDetailsProperty.builder()
.mtu(123)
.socketAddress(RangedSocketAddressProperty.builder()
.name("name")
.portRange(IntegerRangeProperty.builder()
.maximum(123)
.minimum(123)
.build())
.build())
.build())
.ingressAddressAndPort(ConnectionDetailsProperty.builder()
.mtu(123)
.socketAddress(SocketAddressProperty.builder()
.name("name")
.port(123)
.build())
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDataflowEndpointGroupV2PropsMixin.UplinkDataflowDetailsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAgentConnectionDetails
Uplink connection details for customer to Agent and Agent to Ground Station.Returns union: either
IResolvableorCfnDataflowEndpointGroupV2PropsMixin.UplinkConnectionDetailsProperty- See Also:
-
builder
@Stability(Stable) static CfnDataflowEndpointGroupV2PropsMixin.UplinkDataflowDetailsProperty.Builder builder()
-