interface ConnectionDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.GroundStation.CfnDataflowEndpointGroupV2PropsMixin.ConnectionDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsgroundstation#CfnDataflowEndpointGroupV2PropsMixin_ConnectionDetailsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.groundstation.CfnDataflowEndpointGroupV2PropsMixin.ConnectionDetailsProperty |
Python | aws_cdk.cfn_property_mixins.aws_groundstation.CfnDataflowEndpointGroupV2PropsMixin.ConnectionDetailsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_groundstation » CfnDataflowEndpointGroupV2PropsMixin » 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/cfn-property-mixins';
const connectionDetailsProperty: groundstation.CfnDataflowEndpointGroupV2PropsMixin.ConnectionDetailsProperty = {
mtu: 123,
socketAddress: {
name: 'name',
port: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| mtu? | number | Maximum transmission unit (MTU) size in bytes of a dataflow endpoint. |
| socket | IResolvable | Socket | A socket address. |
mtu?
Type:
number
(optional)
Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
socketAddress?
Type:
IResolvable | Socket
(optional)
A socket address.

.NET
Go
Java
Python
TypeScript