interface EndpointDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.GroundStation.CfnDataflowEndpointGroupV2.EndpointDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsgroundstation#CfnDataflowEndpointGroupV2_EndpointDetailsProperty |
Java | software.amazon.awscdk.services.groundstation.CfnDataflowEndpointGroupV2.EndpointDetailsProperty |
Python | aws_cdk.aws_groundstation.CfnDataflowEndpointGroupV2.EndpointDetailsProperty |
TypeScript | aws-cdk-lib » aws_groundstation » CfnDataflowEndpointGroupV2 » EndpointDetailsProperty |
Information about the endpoint details.
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 endpointDetailsProperty: groundstation.CfnDataflowEndpointGroupV2.EndpointDetailsProperty = {
downlinkAwsGroundStationAgentEndpoint: {
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',
},
uplinkAwsGroundStationAgentEndpoint: {
dataflowDetails: {
agentConnectionDetails: {
agentIpAndPortAddress: {
socketAddress: {
name: 'name',
portRange: {
maximum: 123,
minimum: 123,
},
},
// the properties below are optional
mtu: 123,
},
ingressAddressAndPort: {
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 |
|---|---|---|
| downlink | IResolvable | Downlink | Definition for a downlink agent endpoint. |
| uplink | IResolvable | Uplink | Definition for an uplink agent endpoint. |
downlinkAwsGroundStationAgentEndpoint?
Type:
IResolvable | Downlink
(optional)
Definition for a downlink agent endpoint.
uplinkAwsGroundStationAgentEndpoint?
Type:
IResolvable | Uplink
(optional)
Definition for an uplink agent endpoint.

.NET
Go
Java
Python
TypeScript