Interface CfnDataflowEndpointGroupV2.DownlinkAwsGroundStationAgentEndpointProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataflowEndpointGroupV2.DownlinkAwsGroundStationAgentEndpointProperty.Jsii$Proxy
Enclosing class:
CfnDataflowEndpointGroupV2

@Stability(Stable) public static interface CfnDataflowEndpointGroupV2.DownlinkAwsGroundStationAgentEndpointProperty extends software.amazon.jsii.JsiiSerializable
Definition for a downlink agent 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.services.groundstation.*;
 DownlinkAwsGroundStationAgentEndpointProperty downlinkAwsGroundStationAgentEndpointProperty = DownlinkAwsGroundStationAgentEndpointProperty.builder()
         .dataflowDetails(DownlinkDataflowDetailsProperty.builder()
                 .agentConnectionDetails(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())
                 .build())
         .name("name")
         .build();
 

See Also: