Interface IngressV1Beta1Props
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable,ResourceProps
- All Known Implementing Classes:
IngressV1Beta1Props.Jsii$Proxy
@Generated(value="jsii-pacmak/1.59.0 (build eb02c92)", date="2022-05-18T23:19:48.619Z") @Stability(Stable) public interface IngressV1Beta1Props extends software.amazon.jsii.JsiiSerializable, ResourceProps
Properties for `Ingress`.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classIngressV1Beta1Props.BuilderA builder forIngressV1Beta1Propsstatic classIngressV1Beta1Props.Jsii$ProxyAn implementation forIngressV1Beta1Props
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static IngressV1Beta1Props.Builderbuilder()default IngressV1Beta1BackendgetDefaultBackend()The default backend services requests that do not match any rule.default List<IngressV1Beta1Rule>getRules()Routing rules for this ingress.default List<IngressV1Beta1Tls>getTls()TLS settings for this ingress.-
Methods inherited from interface org.cdk8s.plus20.ResourceProps
getMetadata
-
-
-
-
Method Detail
-
getDefaultBackend
@Stability(Stable) @Nullable default IngressV1Beta1Backend getDefaultBackend()
The default backend services requests that do not match any rule.Using this option or the
addDefaultBackend()method is equivalent to adding a rule with bothpathandhostundefined.
-
getRules
@Stability(Stable) @Nullable default List<IngressV1Beta1Rule> getRules()
Routing rules for this ingress.Each rule must define an
IngressBackendthat will receive the requests that match this rule. If bothhostandpathare not specifiec, this backend will be used as the default backend of the ingress.You can also add rules later using
addRule(),addHostRule(),addDefaultBackend()andaddHostDefaultBackend().
-
getTls
@Stability(Stable) @Nullable default List<IngressV1Beta1Tls> getTls()
TLS settings for this ingress.Using this option tells the ingress controller to expose a TLS endpoint. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.
-
builder
@Stability(Stable) static IngressV1Beta1Props.Builder builder()
- Returns:
- a
IngressV1Beta1Props.BuilderofIngressV1Beta1Props
-
-