Class CfnDataflowEndpointGroupV2.UplinkAwsGroundStationAgentEndpointDetailsProperty
Details for an uplink agent endpoint.
Inherited Members
Namespace: Amazon.CDK.AWS.GroundStation
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataflowEndpointGroupV2.UplinkAwsGroundStationAgentEndpointDetailsProperty : CfnDataflowEndpointGroupV2.IUplinkAwsGroundStationAgentEndpointDetailsProperty
Syntax (vb)
Public Class CfnDataflowEndpointGroupV2.UplinkAwsGroundStationAgentEndpointDetailsProperty Implements CfnDataflowEndpointGroupV2.IUplinkAwsGroundStationAgentEndpointDetailsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.GroundStation;
var uplinkAwsGroundStationAgentEndpointDetailsProperty = new UplinkAwsGroundStationAgentEndpointDetailsProperty {
DataflowDetails = new UplinkDataflowDetailsProperty {
AgentConnectionDetails = new UplinkConnectionDetailsProperty {
AgentIpAndPortAddress = new RangedConnectionDetailsProperty {
SocketAddress = new RangedSocketAddressProperty {
Name = "name",
PortRange = new IntegerRangeProperty {
Maximum = 123,
Minimum = 123
}
},
// the properties below are optional
Mtu = 123
},
IngressAddressAndPort = new ConnectionDetailsProperty {
SocketAddress = new SocketAddressProperty {
Name = "name",
Port = 123
},
// the properties below are optional
Mtu = 123
}
}
},
Name = "name",
// the properties below are optional
AgentStatus = "agentStatus",
AuditResults = "auditResults"
};
Synopsis
Constructors
| UplinkAwsGroundStationAgentEndpointDetailsProperty() | Details for an uplink agent endpoint. |
Properties
| AgentStatus | Status of the agent associated with the uplink dataflow endpoint. |
| AuditResults | Health audit results for the uplink dataflow endpoint. |
| DataflowDetails | Dataflow details for the uplink endpoint. |
| Name | Uplink dataflow endpoint name. |
Constructors
UplinkAwsGroundStationAgentEndpointDetailsProperty()
Details for an uplink agent endpoint.
public UplinkAwsGroundStationAgentEndpointDetailsProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.GroundStation;
var uplinkAwsGroundStationAgentEndpointDetailsProperty = new UplinkAwsGroundStationAgentEndpointDetailsProperty {
DataflowDetails = new UplinkDataflowDetailsProperty {
AgentConnectionDetails = new UplinkConnectionDetailsProperty {
AgentIpAndPortAddress = new RangedConnectionDetailsProperty {
SocketAddress = new RangedSocketAddressProperty {
Name = "name",
PortRange = new IntegerRangeProperty {
Maximum = 123,
Minimum = 123
}
},
// the properties below are optional
Mtu = 123
},
IngressAddressAndPort = new ConnectionDetailsProperty {
SocketAddress = new SocketAddressProperty {
Name = "name",
Port = 123
},
// the properties below are optional
Mtu = 123
}
}
},
Name = "name",
// the properties below are optional
AgentStatus = "agentStatus",
AuditResults = "auditResults"
};
Properties
AgentStatus
Status of the agent associated with the uplink dataflow endpoint.
public string? AgentStatus { get; set; }
Property Value
Remarks
AuditResults
Health audit results for the uplink dataflow endpoint.
public string? AuditResults { get; set; }
Property Value
Remarks
DataflowDetails
Dataflow details for the uplink endpoint.
public object DataflowDetails { get; set; }
Property Value
Remarks
Type union: either IResolvable or CfnDataflowEndpointGroupV2.IUplinkDataflowDetailsProperty
Name
Uplink dataflow endpoint name.
public string Name { get; set; }