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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDataflowEndpointGroup.DataflowEndpointProperty
static final class
An implementation forCfnDataflowEndpointGroup.DataflowEndpointProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAddress
The address and port of an endpoint.- See Also:
-
getMtu
Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.Valid values are between 1400 and 1500. A default value of 1500 is used if not set.
- See Also:
-
getName
The endpoint name.When listing available contacts for a satellite, Ground Station searches for a dataflow endpoint whose name matches the value specified by the dataflow endpoint config of the selected mission profile. If no matching dataflow endpoints are found then Ground Station will not display any available contacts for the satellite.
- See Also:
-
builder
-