@Stability(value=Stable)
public static interface CfnDataflowEndpointGroup.DataflowEndpointProperty
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.*;
DataflowEndpointProperty dataflowEndpointProperty = DataflowEndpointProperty.builder()
.address(SocketAddressProperty.builder()
.name("name")
.port(123)
.build())
.mtu(123)
.name("name")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDataflowEndpointGroup.DataflowEndpointProperty.Builder
A builder for
CfnDataflowEndpointGroup.DataflowEndpointProperty |
static class |
CfnDataflowEndpointGroup.DataflowEndpointProperty.Jsii$Proxy
An implementation for
CfnDataflowEndpointGroup.DataflowEndpointProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataflowEndpointGroup.DataflowEndpointProperty.Builder |
builder() |
default Object |
getAddress()
The address and port of an endpoint.
|
default Number |
getMtu()
Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
|
default String |
getName()
The endpoint name.
|
@Stability(value=Stable) @Nullable default Object getAddress()
@Stability(value=Stable) @Nullable default Number getMtu()
Valid values are between 1400 and 1500. A default value of 1500 is used if not set.
@Stability(value=Stable) @Nullable default String getName()
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.
@Stability(value=Stable) static CfnDataflowEndpointGroup.DataflowEndpointProperty.Builder builder()
Copyright © 2022. All rights reserved.