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
Information about AwsGroundStationAgentEndpoint.
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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The status of AgentEndpoint.default String
The results of the audit.default Object
The egress address of AgentEndpoint.default Object
The ingress address of AgentEndpoint.default String
getName()
Name string associated with AgentEndpoint.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAgentStatus
The status of AgentEndpoint.- See Also:
-
getAuditResults
The results of the audit.- See Also:
-
getEgressAddress
The egress address of AgentEndpoint.- See Also:
-
getIngressAddress
The ingress address of AgentEndpoint.- See Also:
-
getName
Name string associated with AgentEndpoint.Used as a human-readable identifier for AgentEndpoint.
- See Also:
-
builder
@Stability(Stable) static CfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty.Builder builder()
-