Package org.cdk8s.plus25.k8s
Interface ServiceBackendPort
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ServiceBackendPort.Jsii$Proxy
@Generated(value="jsii-pacmak/1.88.0 (build eaabd08)", date="2023-09-11T06:17:58.818Z") @Stability(Stable) public interface ServiceBackendPort extends software.amazon.jsii.JsiiSerializable
ServiceBackendPort is the service port being referenced.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classServiceBackendPort.BuilderA builder forServiceBackendPortstatic classServiceBackendPort.Jsii$ProxyAn implementation forServiceBackendPort
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static ServiceBackendPort.Builderbuilder()default StringgetName()Name is the name of the port on the Service.default NumbergetNumber()Number is the numerical port number (e.g.
-
-
-
Method Detail
-
getName
@Stability(Stable) @Nullable default String getName()
Name is the name of the port on the Service.This is a mutually exclusive setting with "Number".
-
getNumber
@Stability(Stable) @Nullable default Number getNumber()
Number is the numerical port number (e.g. 80) on the Service. This is a mutually exclusive setting with "Name".
-
builder
@Stability(Stable) static ServiceBackendPort.Builder builder()
- Returns:
- a
ServiceBackendPort.BuilderofServiceBackendPort
-
-