Interface CfnDataflowEndpointGroupV2.UplinkAwsGroundStationAgentEndpointDetailsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataflowEndpointGroupV2.UplinkAwsGroundStationAgentEndpointDetailsProperty.Jsii$Proxy
- Enclosing class:
CfnDataflowEndpointGroupV2
@Stability(Stable)
public static interface CfnDataflowEndpointGroupV2.UplinkAwsGroundStationAgentEndpointDetailsProperty
extends software.amazon.jsii.JsiiSerializable
Details for an uplink agent 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.*;
UplinkAwsGroundStationAgentEndpointDetailsProperty uplinkAwsGroundStationAgentEndpointDetailsProperty = UplinkAwsGroundStationAgentEndpointDetailsProperty.builder()
.dataflowDetails(UplinkDataflowDetailsProperty.builder()
.agentConnectionDetails(UplinkConnectionDetailsProperty.builder()
.agentIpAndPortAddress(RangedConnectionDetailsProperty.builder()
.socketAddress(RangedSocketAddressProperty.builder()
.name("name")
.portRange(IntegerRangeProperty.builder()
.maximum(123)
.minimum(123)
.build())
.build())
// the properties below are optional
.mtu(123)
.build())
.ingressAddressAndPort(ConnectionDetailsProperty.builder()
.socketAddress(SocketAddressProperty.builder()
.name("name")
.port(123)
.build())
// the properties below are optional
.mtu(123)
.build())
.build())
.build())
.name("name")
// the properties below are optional
.agentStatus("agentStatus")
.auditResults("auditResults")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDataflowEndpointGroupV2.UplinkAwsGroundStationAgentEndpointDetailsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDataflowDetails
Dataflow details for the uplink endpoint.Returns union: either
IResolvableorCfnDataflowEndpointGroupV2.UplinkDataflowDetailsProperty- See Also:
-
getName
Uplink dataflow endpoint name.- See Also:
-
getAgentStatus
Status of the agent associated with the uplink dataflow endpoint.- See Also:
-
getAuditResults
Health audit results for the uplink dataflow endpoint.- See Also:
-
builder
@Stability(Stable) static CfnDataflowEndpointGroupV2.UplinkAwsGroundStationAgentEndpointDetailsProperty.Builder builder()
-