Interface CfnDataflowEndpointGroupV2.DownlinkConnectionDetailsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataflowEndpointGroupV2.DownlinkConnectionDetailsProperty.Jsii$Proxy
- Enclosing class:
CfnDataflowEndpointGroupV2
@Stability(Stable)
public static interface CfnDataflowEndpointGroupV2.DownlinkConnectionDetailsProperty
extends software.amazon.jsii.JsiiSerializable
Connection details for Ground Station to Agent and Agent to customer.
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.*;
DownlinkConnectionDetailsProperty downlinkConnectionDetailsProperty = DownlinkConnectionDetailsProperty.builder()
.agentIpAndPortAddress(RangedConnectionDetailsProperty.builder()
.socketAddress(RangedSocketAddressProperty.builder()
.name("name")
.portRange(IntegerRangeProperty.builder()
.maximum(123)
.minimum(123)
.build())
.build())
// the properties below are optional
.mtu(123)
.build())
.egressAddressAndPort(ConnectionDetailsProperty.builder()
.socketAddress(SocketAddressProperty.builder()
.name("name")
.port(123)
.build())
// the properties below are optional
.mtu(123)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDataflowEndpointGroupV2.DownlinkConnectionDetailsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Agent IP and port address for the downlink connection.Egress address and port for the downlink connection.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAgentIpAndPortAddress
Agent IP and port address for the downlink connection.Returns union: either
IResolvableorCfnDataflowEndpointGroupV2.RangedConnectionDetailsProperty- See Also:
-
getEgressAddressAndPort
Egress address and port for the downlink connection.Returns union: either
IResolvableorCfnDataflowEndpointGroupV2.ConnectionDetailsProperty- See Also:
-
builder
@Stability(Stable) static CfnDataflowEndpointGroupV2.DownlinkConnectionDetailsProperty.Builder builder()
-