Interface CfnCluster.EndpointProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCluster.EndpointProperty.Jsii$Proxy
- Enclosing class:
CfnCluster
@Stability(Stable)
public static interface CfnCluster.EndpointProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.pcs.*;
EndpointProperty endpointProperty = EndpointProperty.builder()
.port("port")
.privateIpAddress("privateIpAddress")
.type("type")
// the properties below are optional
.publicIpAddress("publicIpAddress")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCluster.EndpointPropertystatic final classAn implementation forCfnCluster.EndpointProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPort
The endpoint's connection port number.- See Also:
-
getPrivateIpAddress
The endpoint's private IP address.- See Also:
-
getType
Indicates the type of endpoint running at the specific IP address.- See Also:
-
getPublicIpAddress
The endpoint's public IP address.- See Also:
-
builder
-