Package org.cdk8s.plus20
Interface IngressV1Beta1Tls
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
IngressV1Beta1Tls.Jsii$Proxy
@Generated(value="jsii-pacmak/1.52.1 (build 5ccc8f6)", date="2022-01-14T19:05:22.110Z") @Stability(Stable) public interface IngressV1Beta1Tls extends software.amazon.jsii.JsiiSerializable
Represents the TLS configuration mapping that is passed to the ingress controller for SSL termination.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classIngressV1Beta1Tls.BuilderA builder forIngressV1Beta1Tlsstatic classIngressV1Beta1Tls.Jsii$ProxyAn implementation forIngressV1Beta1Tls
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static IngressV1Beta1Tls.Builderbuilder()default List<String>getHosts()Hosts are a list of hosts included in the TLS certificate.default ISecretgetSecret()Secret is the secret that contains the certificate and key used to terminate SSL traffic on 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 TLS Secret.
Default: - If unspecified, it defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress.
-
getSecret
@Stability(Stable) @Nullable default ISecret getSecret()
Secret is the secret that contains the certificate and key used to terminate SSL traffic on 443.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.
Default: - If unspecified, it allows SSL routing based on SNI hostname.
-
builder
@Stability(Stable) static IngressV1Beta1Tls.Builder builder()
- Returns:
- a
IngressV1Beta1Tls.BuilderofIngressV1Beta1Tls
-
-