Interface CfnDataflowEndpointGroupV2.EndpointDetailsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataflowEndpointGroupV2.EndpointDetailsProperty.Jsii$Proxy
- Enclosing class:
CfnDataflowEndpointGroupV2
@Stability(Stable)
public static interface CfnDataflowEndpointGroupV2.EndpointDetailsProperty
extends software.amazon.jsii.JsiiSerializable
Information about the endpoint details.
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.*;
EndpointDetailsProperty endpointDetailsProperty = EndpointDetailsProperty.builder()
.downlinkAwsGroundStationAgentEndpoint(DownlinkAwsGroundStationAgentEndpointDetailsProperty.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")
// the properties below are optional
.agentStatus("agentStatus")
.auditResults("auditResults")
.build())
.uplinkAwsGroundStationAgentEndpoint(UplinkAwsGroundStationAgentEndpointDetailsProperty.builder()
.dataflowDetails(UplinkDataflowDetailsProperty.builder()
.agentConnectionDetails(UplinkConnectionDetailsProperty.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())
.ingressAddressAndPort(ConnectionDetailsProperty.builder()
.socketAddress(SocketAddressProperty.builder()
.name("name")
.port(123)
.build())
// the properties below are optional
.mtu(123)
.build())
.build())
.build())
.name("name")
// the properties below are optional
.agentStatus("agentStatus")
.auditResults("auditResults")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataflowEndpointGroupV2.EndpointDetailsPropertystatic final classAn implementation forCfnDataflowEndpointGroupV2.EndpointDetailsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDownlinkAwsGroundStationAgentEndpoint
Definition for a downlink agent endpoint.Returns union: either
IResolvableorCfnDataflowEndpointGroupV2.DownlinkAwsGroundStationAgentEndpointDetailsProperty- See Also:
-
getUplinkAwsGroundStationAgentEndpoint
Definition for an uplink agent endpoint.Returns union: either
IResolvableorCfnDataflowEndpointGroupV2.UplinkAwsGroundStationAgentEndpointDetailsProperty- See Also:
-
builder
-