interface SocketAddressProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.GroundStation.CfnDataflowEndpointGroupV2.SocketAddressProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsgroundstation#CfnDataflowEndpointGroupV2_SocketAddressProperty |
Java | software.amazon.awscdk.services.groundstation.CfnDataflowEndpointGroupV2.SocketAddressProperty |
Python | aws_cdk.aws_groundstation.CfnDataflowEndpointGroupV2.SocketAddressProperty |
TypeScript | aws-cdk-lib » aws_groundstation » CfnDataflowEndpointGroupV2 » SocketAddressProperty |
Information about the socket address.
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 socketAddressProperty: groundstation.CfnDataflowEndpointGroupV2.SocketAddressProperty = {
name: 'name',
port: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Name of a socket address. |
| port | number | Port of a socket address. |
name
Type:
string
Name of a socket address.
port
Type:
number
Port of a socket address.

.NET
Go
Java
Python
TypeScript