interface SocketAddressProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GroundStation.Mixins.CfnDataflowEndpointGroupPropsMixin.SocketAddressProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgroundstation/mixins#CfnDataflowEndpointGroupPropsMixin_SocketAddressProperty |
Java | software.amazon.awscdk.mixins.preview.services.groundstation.mixins.CfnDataflowEndpointGroupPropsMixin.SocketAddressProperty |
Python | aws_cdk.mixins_preview.aws_groundstation.mixins.CfnDataflowEndpointGroupPropsMixin.SocketAddressProperty |
TypeScript | @aws-cdk/mixins-preview » aws_groundstation » mixins » CfnDataflowEndpointGroupPropsMixin » SocketAddressProperty |
The address of the endpoint, such as 192.168.1.1 .
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.CfnDataflowEndpointGroupPropsMixin.SocketAddressProperty = {
name: 'name',
port: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the endpoint, such as Endpoint 1 . |
| port? | number | The port of the endpoint, such as 55888 . |
name?
Type:
string
(optional)
The name of the endpoint, such as Endpoint 1 .
port?
Type:
number
(optional)
The port of the endpoint, such as 55888 .

.NET
Go
Java
Python
TypeScript