Package org.cdk8s.plus24
Class IngressProps.Builder
- java.lang.Object
-
- org.cdk8s.plus24.IngressProps.Builder
-
- All Implemented Interfaces:
software.amazon.jsii.Builder<IngressProps>
- Enclosing interface:
- IngressProps
@Stability(Stable) public static final class IngressProps.Builder extends Object implements software.amazon.jsii.Builder<IngressProps>
A builder forIngressProps
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IngressProps
build()
Builds the configured instance.IngressProps.Builder
defaultBackend(IngressBackend defaultBackend)
Sets the value ofIngressProps.getDefaultBackend()
IngressProps.Builder
metadata(org.cdk8s.ApiObjectMetadata metadata)
Sets the value ofResourceProps.getMetadata()
IngressProps.Builder
rules(List<? extends IngressRule> rules)
Sets the value ofIngressProps.getRules()
IngressProps.Builder
tls(List<? extends IngressTls> tls)
Sets the value ofIngressProps.getTls()
-
-
-
Method Detail
-
defaultBackend
@Stability(Stable) public IngressProps.Builder defaultBackend(IngressBackend defaultBackend)
Sets the value ofIngressProps.getDefaultBackend()
- Parameters:
defaultBackend
- The default backend services requests that do not match any rule. Using this option or theaddDefaultBackend()
method is equivalent to adding a rule with bothpath
andhost
undefined.- Returns:
this
-
rules
@Stability(Stable) public IngressProps.Builder rules(List<? extends IngressRule> rules)
Sets the value ofIngressProps.getRules()
- Parameters:
rules
- Routing rules for this ingress. Each rule must define anIngressBackend
that will receive the requests that match this rule. If bothhost
andpath
are 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()
.- Returns:
this
-
tls
@Stability(Stable) public IngressProps.Builder tls(List<? extends IngressTls> tls)
Sets the value ofIngressProps.getTls()
- Parameters:
tls
- 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.- Returns:
this
-
metadata
@Stability(Stable) public IngressProps.Builder metadata(org.cdk8s.ApiObjectMetadata metadata)
Sets the value ofResourceProps.getMetadata()
- Parameters:
metadata
- Metadata that all persisted resources must have, which includes all objects users must create.- Returns:
this
-
build
@Stability(Stable) public IngressProps build()
Builds the configured instance.- Specified by:
build
in interfacesoftware.amazon.jsii.Builder<IngressProps>
- Returns:
- a new instance of
IngressProps
- Throws:
NullPointerException
- if any required attribute was not provided
-
-