interface SocketAddressProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GroundStation.Mixins.CfnDataflowEndpointGroupV2PropsMixin.SocketAddressProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgroundstation/mixins#CfnDataflowEndpointGroupV2PropsMixin_SocketAddressProperty |
Java | software.amazon.awscdk.mixins.preview.services.groundstation.mixins.CfnDataflowEndpointGroupV2PropsMixin.SocketAddressProperty |
Python | aws_cdk.mixins_preview.aws_groundstation.mixins.CfnDataflowEndpointGroupV2PropsMixin.SocketAddressProperty |
TypeScript | @aws-cdk/mixins-preview » aws_groundstation » mixins » CfnDataflowEndpointGroupV2PropsMixin » 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 { mixins as groundstation_mixins } from '@aws-cdk/mixins-preview/aws-groundstation';
const socketAddressProperty: groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.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
(optional)
Name of a socket address.
port?
Type:
number
(optional)
Port of a socket address.

.NET
Go
Java
Python
TypeScript