interface UplinkAwsGroundStationAgentEndpointDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.GroundStation.CfnDataflowEndpointGroupV2PropsMixin.UplinkAwsGroundStationAgentEndpointDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsgroundstation#CfnDataflowEndpointGroupV2PropsMixin_UplinkAwsGroundStationAgentEndpointDetailsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.groundstation.CfnDataflowEndpointGroupV2PropsMixin.UplinkAwsGroundStationAgentEndpointDetailsProperty |
Python | aws_cdk.cfn_property_mixins.aws_groundstation.CfnDataflowEndpointGroupV2PropsMixin.UplinkAwsGroundStationAgentEndpointDetailsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_groundstation » CfnDataflowEndpointGroupV2PropsMixin » UplinkAwsGroundStationAgentEndpointDetailsProperty |
Details for an uplink 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/cfn-property-mixins';
const uplinkAwsGroundStationAgentEndpointDetailsProperty: groundstation.CfnDataflowEndpointGroupV2PropsMixin.UplinkAwsGroundStationAgentEndpointDetailsProperty = {
agentStatus: 'agentStatus',
auditResults: 'auditResults',
dataflowDetails: {
agentConnectionDetails: {
agentIpAndPortAddress: {
mtu: 123,
socketAddress: {
name: 'name',
portRange: {
maximum: 123,
minimum: 123,
},
},
},
ingressAddressAndPort: {
mtu: 123,
socketAddress: {
name: 'name',
port: 123,
},
},
},
},
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| agent | string | Status of the agent associated with the uplink dataflow endpoint. |
| audit | string | Health audit results for the uplink dataflow endpoint. |
| dataflow | IResolvable | Uplink | Dataflow details for the uplink endpoint. |
| name? | string | Uplink dataflow endpoint name. |
agentStatus?
Type:
string
(optional)
Status of the agent associated with the uplink dataflow endpoint.
auditResults?
Type:
string
(optional)
Health audit results for the uplink dataflow endpoint.
dataflowDetails?
Type:
IResolvable | Uplink
(optional)
Dataflow details for the uplink endpoint.
name?
Type:
string
(optional)
Uplink dataflow endpoint name.

.NET
Go
Java
Python
TypeScript