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

.NET
Go
Java
Python
TypeScript