Interface CfnDataflowEndpointGroupV2MixinProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataflowEndpointGroupV2MixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:19:59.915Z") @Stability(Stable) public interface CfnDataflowEndpointGroupV2MixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnDataflowEndpointGroupV2PropsMixin.

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.*;
 CfnDataflowEndpointGroupV2MixinProps cfnDataflowEndpointGroupV2MixinProps = CfnDataflowEndpointGroupV2MixinProps.builder()
         .contactPostPassDurationSeconds(123)
         .contactPrePassDurationSeconds(123)
         .endpoints(List.of(CreateEndpointDetailsProperty.builder()
                 .downlinkAwsGroundStationAgentEndpoint(DownlinkAwsGroundStationAgentEndpointProperty.builder()
                         .dataflowDetails(DownlinkDataflowDetailsProperty.builder()
                                 .agentConnectionDetails(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())
                                 .build())
                         .name("name")
                         .build())
                 .uplinkAwsGroundStationAgentEndpoint(UplinkAwsGroundStationAgentEndpointProperty.builder()
                         .dataflowDetails(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())
                         .name("name")
                         .build())
                 .build()))
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: