interface RangedConnectionDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.GroundStation.CfnDataflowEndpointGroupV2.RangedConnectionDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsgroundstation#CfnDataflowEndpointGroupV2_RangedConnectionDetailsProperty |
Java | software.amazon.awscdk.services.groundstation.CfnDataflowEndpointGroupV2.RangedConnectionDetailsProperty |
Python | aws_cdk.aws_groundstation.CfnDataflowEndpointGroupV2.RangedConnectionDetailsProperty |
TypeScript | aws-cdk-lib » aws_groundstation » CfnDataflowEndpointGroupV2 » RangedConnectionDetailsProperty |
Ingress address of AgentEndpoint with a port range and an optional mtu.
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 rangedConnectionDetailsProperty: groundstation.CfnDataflowEndpointGroupV2.RangedConnectionDetailsProperty = {
socketAddress: {
name: 'name',
portRange: {
maximum: 123,
minimum: 123,
},
},
// the properties below are optional
mtu: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| socket | IResolvable | Ranged | A ranged socket address. |
| mtu? | number | Maximum transmission unit (MTU) size in bytes of a dataflow endpoint. |
socketAddress
Type:
IResolvable | Ranged
A ranged socket address.
mtu?
Type:
number
(optional)
Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.

.NET
Go
Java
Python
TypeScript