Package org.cdk8s.plus24.k8s
Interface IngressTls
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
IngressTls.Jsii$Proxy
@Generated(value="jsii-pacmak/1.85.0 (build 08ee592)", date="2023-07-25T00:18:39.240Z") @Stability(Stable) public interface IngressTls extends software.amazon.jsii.JsiiSerializable
IngressTLS describes the transport layer security associated with an Ingress.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
IngressTls.Builder
A builder forIngressTls
static class
IngressTls.Jsii$Proxy
An implementation forIngressTls
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static IngressTls.Builder
builder()
default List<String>
getHosts()
Hosts are a list of hosts included in the TLS certificate.default String
getSecretName()
SecretName is the name of the secret used to terminate TLS traffic on port 443.
-
-
-
Method Detail
-
getHosts
@Stability(Stable) @Nullable default List<String> getHosts()
Hosts are a list of hosts included in the TLS certificate.The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.
Default: the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.
-
getSecretName
@Stability(Stable) @Nullable default String getSecretName()
SecretName is the name of the secret used to terminate TLS traffic on port 443.Field is left optional to allow TLS routing based on SNI hostname alone. If the SNI host in a listener conflicts with the "Host" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.
-
builder
@Stability(Stable) static IngressTls.Builder builder()
- Returns:
- a
IngressTls.Builder
ofIngressTls
-
-