Class IngressProps.Jsii$Proxy
- java.lang.Object
-
- software.amazon.jsii.JsiiObject
-
- org.cdk8s.plus24.IngressProps.Jsii$Proxy
-
- All Implemented Interfaces:
IngressProps
,ResourceProps
,software.amazon.jsii.JsiiSerializable
- Enclosing interface:
- IngressProps
@Stability(Stable) @Internal public static final class IngressProps.Jsii$Proxy extends software.amazon.jsii.JsiiObject implements IngressProps
An implementation forIngressProps
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
-
Nested classes/interfaces inherited from interface org.cdk8s.plus24.IngressProps
IngressProps.Builder, IngressProps.Jsii$Proxy
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
Jsii$Proxy(IngressProps.Builder builder)
Constructor that initializes the object based on literal property values passed by theIngressProps.Builder
.protected
Jsii$Proxy(software.amazon.jsii.JsiiObjectRef objRef)
Constructor that initializes the object based on values retrieved from the JsiiObject.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description com.fasterxml.jackson.databind.JsonNode
$jsii$toJson()
boolean
equals(Object o)
IngressBackend
getDefaultBackend()
The default backend services requests that do not match any rule.org.cdk8s.ApiObjectMetadata
getMetadata()
Metadata that all persisted resources must have, which includes all objects users must create.List<IngressRule>
getRules()
Routing rules for this ingress.List<IngressTls>
getTls()
TLS settings for this ingress.int
hashCode()
-
-
-
Constructor Detail
-
Jsii$Proxy
protected Jsii$Proxy(software.amazon.jsii.JsiiObjectRef objRef)
Constructor that initializes the object based on values retrieved from the JsiiObject.- Parameters:
objRef
- Reference to the JSII managed object.
-
Jsii$Proxy
protected Jsii$Proxy(IngressProps.Builder builder)
Constructor that initializes the object based on literal property values passed by theIngressProps.Builder
.
-
-
Method Detail
-
getDefaultBackend
public final IngressBackend getDefaultBackend()
Description copied from interface:IngressProps
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 bothpath
andhost
undefined.- Specified by:
getDefaultBackend
in interfaceIngressProps
-
getRules
public final List<IngressRule> getRules()
Description copied from interface:IngressProps
Routing rules for this ingress.Each rule must define an
IngressBackend
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()
.- Specified by:
getRules
in interfaceIngressProps
-
getTls
public final List<IngressTls> getTls()
Description copied from interface:IngressProps
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.
- Specified by:
getTls
in interfaceIngressProps
-
getMetadata
public final org.cdk8s.ApiObjectMetadata getMetadata()
Description copied from interface:ResourceProps
Metadata that all persisted resources must have, which includes all objects users must create.- Specified by:
getMetadata
in interfaceResourceProps
-
$jsii$toJson
@Internal public com.fasterxml.jackson.databind.JsonNode $jsii$toJson()
- Specified by:
$jsii$toJson
in interfacesoftware.amazon.jsii.JsiiSerializable
-
-