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