Interface CfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty.Jsii$Proxy
- Enclosing class:
- CfnDataflowEndpointGroup
@Stability(Stable)
public static interface CfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty
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.*;
AwsGroundStationAgentEndpointProperty awsGroundStationAgentEndpointProperty = AwsGroundStationAgentEndpointProperty.builder()
.agentStatus("agentStatus")
.auditResults("auditResults")
.egressAddress(ConnectionDetailsProperty.builder()
.mtu(123)
.socketAddress(SocketAddressProperty.builder()
.name("name")
.port(123)
.build())
.build())
.ingressAddress(RangedConnectionDetailsProperty.builder()
.mtu(123)
.socketAddress(RangedSocketAddressProperty.builder()
.name("name")
.portRange(IntegerRangeProperty.builder()
.maximum(123)
.minimum(123)
.build())
.build())
.build())
.name("name")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringCfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty.AgentStatus.default StringCfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty.AuditResults.default ObjectCfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty.EgressAddress.default ObjectCfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty.IngressAddress.default StringgetName()CfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty.Name.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAgentStatus
CfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty.AgentStatus. -
getAuditResults
CfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty.AuditResults. -
getEgressAddress
CfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty.EgressAddress. -
getIngressAddress
CfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty.IngressAddress. -
getName
CfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty.Name. -
builder
@Stability(Stable) static CfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty.Builder builder()
-