Interface CfnDataflowEndpointGroup.DataflowEndpointProperty

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

@Stability(Stable) public static interface CfnDataflowEndpointGroup.DataflowEndpointProperty extends software.amazon.jsii.JsiiSerializable
Contains information such as socket address and name that defines an 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.*;
 DataflowEndpointProperty dataflowEndpointProperty = DataflowEndpointProperty.builder()
         .address(SocketAddressProperty.builder()
                 .name("name")
                 .port(123)
                 .build())
         .mtu(123)
         .name("name")
         .build();
 

See Also: