Package org.cdk8s.plus24.k8s
Interface IngressClassSpec
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
IngressClassSpec.Jsii$Proxy
@Generated(value="jsii-pacmak/1.73.0 (build 6faeda3)", date="2023-01-26T02:32:35.052Z") @Stability(Stable) public interface IngressClassSpec extends software.amazon.jsii.JsiiSerializable
IngressClassSpec provides information about the class of an Ingress.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
IngressClassSpec.Builder
A builder forIngressClassSpec
static class
IngressClassSpec.Jsii$Proxy
An implementation forIngressClassSpec
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static IngressClassSpec.Builder
builder()
default String
getController()
Controller refers to the name of the controller that should handle this class.default IngressClassParametersReference
getParameters()
Parameters is a link to a custom resource containing additional configuration for the controller.
-
-
-
Method Detail
-
getController
@Stability(Stable) @Nullable default String getController()
Controller refers to the name of the controller that should handle this class.This allows for different "flavors" that are controlled by the same controller. For example, you may have different Parameters for the same implementing controller. This should be specified as a domain-prefixed path no more than 250 characters in length, e.g. "acme.io/ingress-controller". This field is immutable.
-
getParameters
@Stability(Stable) @Nullable default IngressClassParametersReference getParameters()
Parameters is a link to a custom resource containing additional configuration for the controller.This is optional if the controller does not require extra parameters.
-
builder
@Stability(Stable) static IngressClassSpec.Builder builder()
- Returns:
- a
IngressClassSpec.Builder
ofIngressClassSpec
-
-