Interface CfnDataflowEndpointGroupV2PropsMixin.DownlinkAwsGroundStationAgentEndpointDetailsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataflowEndpointGroupV2PropsMixin.DownlinkAwsGroundStationAgentEndpointDetailsProperty.Jsii$Proxy
- Enclosing class:
CfnDataflowEndpointGroupV2PropsMixin
@Stability(Stable)
public static interface CfnDataflowEndpointGroupV2PropsMixin.DownlinkAwsGroundStationAgentEndpointDetailsProperty
extends software.amazon.jsii.JsiiSerializable
Details for a downlink 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.*;
DownlinkAwsGroundStationAgentEndpointDetailsProperty downlinkAwsGroundStationAgentEndpointDetailsProperty = DownlinkAwsGroundStationAgentEndpointDetailsProperty.builder()
.agentStatus("agentStatus")
.auditResults("auditResults")
.dataflowDetails(DownlinkDataflowDetailsProperty.builder()
.agentConnectionDetails(DownlinkConnectionDetailsProperty.builder()
.agentIpAndPortAddress(RangedConnectionDetailsProperty.builder()
.mtu(123)
.socketAddress(RangedSocketAddressProperty.builder()
.name("name")
.portRange(IntegerRangeProperty.builder()
.maximum(123)
.minimum(123)
.build())
.build())
.build())
.egressAddressAndPort(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 class -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnDataflowEndpointGroupV2PropsMixin.DownlinkAwsGroundStationAgentEndpointDetailsProperty.Builderbuilder()default StringStatus of the agent associated with the downlink dataflow endpoint.default StringHealth audit results for the downlink dataflow endpoint.default ObjectDataflow details for the downlink endpoint.default StringgetName()Downlink dataflow endpoint name.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAgentStatus
Status of the agent associated with the downlink dataflow endpoint.- See Also:
-
getAuditResults
Health audit results for the downlink dataflow endpoint.- See Also:
-
getDataflowDetails
Dataflow details for the downlink endpoint.Returns union: either
IResolvableorCfnDataflowEndpointGroupV2PropsMixin.DownlinkDataflowDetailsProperty- See Also:
-
getName
Downlink dataflow endpoint name.- See Also:
-
builder
@Stability(Stable) static CfnDataflowEndpointGroupV2PropsMixin.DownlinkAwsGroundStationAgentEndpointDetailsProperty.Builder builder()
-