interface RangedSocketAddressProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.GroundStation.CfnDataflowEndpointGroupV2PropsMixin.RangedSocketAddressProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsgroundstation#CfnDataflowEndpointGroupV2PropsMixin_RangedSocketAddressProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.groundstation.CfnDataflowEndpointGroupV2PropsMixin.RangedSocketAddressProperty |
Python | aws_cdk.cfn_property_mixins.aws_groundstation.CfnDataflowEndpointGroupV2PropsMixin.RangedSocketAddressProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_groundstation » CfnDataflowEndpointGroupV2PropsMixin » RangedSocketAddressProperty |
A socket address with a port range.
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 rangedSocketAddressProperty: groundstation.CfnDataflowEndpointGroupV2PropsMixin.RangedSocketAddressProperty = {
name: 'name',
portRange: {
maximum: 123,
minimum: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | IPv4 socket address. |
| port | IResolvable | Integer | Port range of a socket address. |
name?
Type:
string
(optional)
IPv4 socket address.
portRange?
Type:
IResolvable | Integer
(optional)
Port range of a socket address.

.NET
Go
Java
Python
TypeScript