Interface CfnDataflowEndpointGroup.RangedSocketAddressProperty

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

@Stability(Stable) public static interface CfnDataflowEndpointGroup.RangedSocketAddressProperty extends software.amazon.jsii.JsiiSerializable
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.*;
 RangedSocketAddressProperty rangedSocketAddressProperty = RangedSocketAddressProperty.builder()
         .name("name")
         .portRange(IntegerRangeProperty.builder()
                 .maximum(123)
                 .minimum(123)
                 .build())
         .build();
 

See Also: