Interface CfnDataflowEndpointGroupV2.ConnectionDetailsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataflowEndpointGroupV2.ConnectionDetailsProperty.Jsii$Proxy
- Enclosing class:
CfnDataflowEndpointGroupV2
@Stability(Stable)
public static interface CfnDataflowEndpointGroupV2.ConnectionDetailsProperty
extends software.amazon.jsii.JsiiSerializable
Egress address of AgentEndpoint with an optional mtu.
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.*;
ConnectionDetailsProperty connectionDetailsProperty = ConnectionDetailsProperty.builder()
.socketAddress(SocketAddressProperty.builder()
.name("name")
.port(123)
.build())
// the properties below are optional
.mtu(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataflowEndpointGroupV2.ConnectionDetailsPropertystatic final classAn implementation forCfnDataflowEndpointGroupV2.ConnectionDetailsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSocketAddress
A socket address.Returns union: either
IResolvableorCfnDataflowEndpointGroupV2.SocketAddressProperty- See Also:
-
getMtu
Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.- See Also:
-
builder
-