Interface ApplicationListenerCertificateProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ApplicationListenerCertificateProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:10:05.148Z")
@Stability(Stable)
public interface ApplicationListenerCertificateProps
extends software.amazon.jsii.JsiiSerializable
Properties for adding a set of certificates to a listener.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.elasticloadbalancingv2.*;
ApplicationListener applicationListener;
ListenerCertificate listenerCertificate;
ApplicationListenerCertificateProps applicationListenerCertificateProps = ApplicationListenerCertificateProps.builder()
.listener(applicationListener)
// the properties below are optional
.certificates(List.of(listenerCertificate))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forApplicationListenerCertificatePropsstatic final classAn implementation forApplicationListenerCertificateProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default List<IListenerCertificate> Certificates to attach.The listener to attach the rule to.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getListener
The listener to attach the rule to. -
getCertificates
Certificates to attach.Duplicates are not allowed.
Default: - One of 'certificates' and 'certificateArns' is required.
-
builder
-