interface DownlinkAwsGroundStationAgentEndpointDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.GroundStation.CfnDataflowEndpointGroupV2.DownlinkAwsGroundStationAgentEndpointDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsgroundstation#CfnDataflowEndpointGroupV2_DownlinkAwsGroundStationAgentEndpointDetailsProperty |
Java | software.amazon.awscdk.services.groundstation.CfnDataflowEndpointGroupV2.DownlinkAwsGroundStationAgentEndpointDetailsProperty |
Python | aws_cdk.aws_groundstation.CfnDataflowEndpointGroupV2.DownlinkAwsGroundStationAgentEndpointDetailsProperty |
TypeScript | aws-cdk-lib » aws_groundstation » CfnDataflowEndpointGroupV2 » DownlinkAwsGroundStationAgentEndpointDetailsProperty |
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 { aws_groundstation as groundstation } from 'aws-cdk-lib';
const downlinkAwsGroundStationAgentEndpointDetailsProperty: groundstation.CfnDataflowEndpointGroupV2.DownlinkAwsGroundStationAgentEndpointDetailsProperty = {
dataflowDetails: {
agentConnectionDetails: {
agentIpAndPortAddress: {
socketAddress: {
name: 'name',
portRange: {
maximum: 123,
minimum: 123,
},
},
// the properties below are optional
mtu: 123,
},
egressAddressAndPort: {
socketAddress: {
name: 'name',
port: 123,
},
// the properties below are optional
mtu: 123,
},
},
},
name: 'name',
// the properties below are optional
agentStatus: 'agentStatus',
auditResults: 'auditResults',
};
Properties
| Name | Type | Description |
|---|---|---|
| dataflow | IResolvable | Downlink | Dataflow details for the downlink endpoint. |
| name | string | Downlink dataflow endpoint name. |
| agent | string | Status of the agent associated with the downlink dataflow endpoint. |
| audit | string | Health audit results for the downlink dataflow endpoint. |
dataflowDetails
Type:
IResolvable | Downlink
Dataflow details for the downlink endpoint.
name
Type:
string
Downlink dataflow endpoint name.
agentStatus?
Type:
string
(optional)
Status of the agent associated with the downlink dataflow endpoint.
auditResults?
Type:
string
(optional)
Health audit results for the downlink dataflow endpoint.

.NET
Go
Java
Python
TypeScript