Package org.cdk8s.plus25.k8s
Interface HttpIngressRuleValue
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
HttpIngressRuleValue.Jsii$Proxy
@Generated(value="jsii-pacmak/1.88.0 (build eaabd08)", date="2023-09-11T06:17:58.552Z") @Stability(Stable) public interface HttpIngressRuleValue extends software.amazon.jsii.JsiiSerializable
HTTPIngressRuleValue is a list of http selectors pointing to backends.In the example: http://
/ ? -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last '/' and before the first '?' or '#'.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classHttpIngressRuleValue.BuilderA builder forHttpIngressRuleValuestatic classHttpIngressRuleValue.Jsii$ProxyAn implementation forHttpIngressRuleValue
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static HttpIngressRuleValue.Builderbuilder()List<HttpIngressPath>getPaths()A collection of paths that map requests to backends.
-
-
-
Method Detail
-
getPaths
@Stability(Stable) @NotNull List<HttpIngressPath> getPaths()
A collection of paths that map requests to backends.
-
builder
@Stability(Stable) static HttpIngressRuleValue.Builder builder()
- Returns:
- a
HttpIngressRuleValue.BuilderofHttpIngressRuleValue
-
-