Class IngressProps.Jsii$Proxy
- java.lang.Object
-
- software.amazon.jsii.JsiiObject
-
- org.cdk8s.plus22.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.plus22.IngressProps
IngressProps.Builder, IngressProps.Jsii$Proxy
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedJsii$Proxy(IngressProps.Builder builder)Constructor that initializes the object based on literal property values passed by theIngressProps.Builder.protectedJsii$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()booleanequals(Object o)IngressBackendgetDefaultBackend()The default backend services requests that do not match any rule.org.cdk8s.ApiObjectMetadatagetMetadata()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.inthashCode()
-
-
-
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:IngressPropsThe 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.- Specified by:
getDefaultBackendin interfaceIngressProps
-
getRules
public final List<IngressRule> getRules()
Description copied from interface:IngressPropsRouting 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().- Specified by:
getRulesin interfaceIngressProps
-
getTls
public final List<IngressTls> getTls()
Description copied from interface:IngressPropsTLS 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:
getTlsin interfaceIngressProps
-
getMetadata
public final org.cdk8s.ApiObjectMetadata getMetadata()
Description copied from interface:ResourcePropsMetadata that all persisted resources must have, which includes all objects users must create.- Specified by:
getMetadatain interfaceResourceProps
-
$jsii$toJson
@Internal public com.fasterxml.jackson.databind.JsonNode $jsii$toJson()
- Specified by:
$jsii$toJsonin interfacesoftware.amazon.jsii.JsiiSerializable
-
-