interface EndpointProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.aws_pcs.CfnCluster.EndpointProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awspcs#CfnCluster_EndpointProperty | 
|  Java | software.amazon.awscdk.services.pcs.CfnCluster.EndpointProperty | 
|  Python | aws_cdk.aws_pcs.CfnCluster.EndpointProperty | 
|  TypeScript | aws-cdk-lib»aws_pcs»CfnCluster»EndpointProperty | 
An endpoint available for interaction with the scheduler.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_pcs as pcs } from 'aws-cdk-lib';
const endpointProperty: pcs.CfnCluster.EndpointProperty = {
  port: 'port',
  privateIpAddress: 'privateIpAddress',
  type: 'type',
  // the properties below are optional
  ipv6Address: 'ipv6Address',
  publicIpAddress: 'publicIpAddress',
};
Properties
| Name | Type | Description | 
|---|---|---|
| port | string | The endpoint's connection port number. | 
| private | string | For clusters that use IPv4, this is the endpoint's private IP address. | 
| type | string | Indicates the type of endpoint running at the specific IP address. | 
| ipv6 | string | The endpoint's IPv6 address. | 
| public | string | The endpoint's public IP address. | 
port
Type:
string
The endpoint's connection port number.
Example: 1234
privateIpAddress
Type:
string
For clusters that use IPv4, this is the endpoint's private IP address.
Example: 10.1.2.3
For clusters configured to use IPv6, this is an empty string.
type
Type:
string
Indicates the type of endpoint running at the specific IP address.
ipv6Address?
Type:
string
(optional)
The endpoint's IPv6 address.
Example: 2001:db8::1
publicIpAddress?
Type:
string
(optional)
The endpoint's public IP address.
Example: 192.0.2.1
