Interface CfnCluster.IEndpointProperty
An endpoint available for interaction with the scheduler.
Namespace: Amazon.CDK.AwsPcs
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IEndpointProperty
Syntax (vb)
Public Interface IEndpointProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Aws_pcs;
var endpointProperty = new EndpointProperty {
Port = "port",
PrivateIpAddress = "privateIpAddress",
Type = "type",
// the properties below are optional
PublicIpAddress = "publicIpAddress"
};
Synopsis
Properties
Port | The endpoint's connection port number. |
Private |
The endpoint's private IP address. |
Public |
The endpoint's public IP address. |
Type | Indicates the type of endpoint running at the specific IP address. |
Properties
Port
The endpoint's connection port number.
string Port { get; }
Property Value
System.
Remarks
PrivateIpAddress
The endpoint's private IP address.
string PrivateIpAddress { get; }
Property Value
System.
Remarks
PublicIpAddress
The endpoint's public IP address.
virtual string PublicIpAddress { get; }
Property Value
System.
Remarks
Type
Indicates the type of endpoint running at the specific IP address.
string Type { get; }
Property Value
System.