Interface CfnDataflowEndpointGroupV2PropsMixin.RangedSocketAddressProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataflowEndpointGroupV2PropsMixin.RangedSocketAddressProperty.Jsii$Proxy
- Enclosing class:
CfnDataflowEndpointGroupV2PropsMixin
@Stability(Stable)
public static interface CfnDataflowEndpointGroupV2PropsMixin.RangedSocketAddressProperty
extends software.amazon.jsii.JsiiSerializable
A socket address with a port range.
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.*;
RangedSocketAddressProperty rangedSocketAddressProperty = RangedSocketAddressProperty.builder()
.name("name")
.portRange(IntegerRangeProperty.builder()
.maximum(123)
.minimum(123)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDataflowEndpointGroupV2PropsMixin.RangedSocketAddressProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
IPv4 socket address.- See Also:
-
getPortRange
Port range of a socket address.Returns union: either
IResolvableorCfnDataflowEndpointGroupV2PropsMixin.IntegerRangeProperty- See Also:
-
builder
@Stability(Stable) static CfnDataflowEndpointGroupV2PropsMixin.RangedSocketAddressProperty.Builder builder()
-