Interface ApplicationListenerCertificateProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ApplicationListenerCertificateProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)",
date="2023-05-31T18:44:15.757Z")
@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 .certificateArns(List.of("certificateArns")) .certificates(List.of(listenerCertificate)) .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forApplicationListenerCertificateProps
static final class
An implementation forApplicationListenerCertificateProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Deprecated.Use `certificates` instead.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. -
getCertificateArns
Deprecated.Use `certificates` instead.(deprecated) ARNs of certificates to attach.Duplicates are not allowed.
Default: - One of 'certificates' and 'certificateArns' is required.
-
getCertificates
Certificates to attach.Duplicates are not allowed.
Default: - One of 'certificates' and 'certificateArns' is required.
-
builder
-