Interface CfnDataflowEndpointGroupV2PropsMixin.DownlinkConnectionDetailsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataflowEndpointGroupV2PropsMixin.DownlinkConnectionDetailsProperty.Jsii$Proxy
- Enclosing class:
CfnDataflowEndpointGroupV2PropsMixin
@Stability(Stable)
public static interface CfnDataflowEndpointGroupV2PropsMixin.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.cfnpropertymixins.services.groundstation.*;
DownlinkConnectionDetailsProperty downlinkConnectionDetailsProperty = DownlinkConnectionDetailsProperty.builder()
.agentIpAndPortAddress(RangedConnectionDetailsProperty.builder()
.mtu(123)
.socketAddress(RangedSocketAddressProperty.builder()
.name("name")
.portRange(IntegerRangeProperty.builder()
.maximum(123)
.minimum(123)
.build())
.build())
.build())
.egressAddressAndPort(ConnectionDetailsProperty.builder()
.mtu(123)
.socketAddress(SocketAddressProperty.builder()
.name("name")
.port(123)
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDataflowEndpointGroupV2PropsMixin.DownlinkConnectionDetailsProperty -
Method Summary
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
IResolvableorCfnDataflowEndpointGroupV2PropsMixin.RangedConnectionDetailsProperty- See Also:
-
getEgressAddressAndPort
Egress address and port for the downlink connection.Returns union: either
IResolvableorCfnDataflowEndpointGroupV2PropsMixin.ConnectionDetailsProperty- See Also:
-
builder
@Stability(Stable) static CfnDataflowEndpointGroupV2PropsMixin.DownlinkConnectionDetailsProperty.Builder builder()
-