@Generated(value="jsii-pacmak/1.73.0 (build 6faeda3)",
date="2023-01-25T18:29:07.768Z")
public interface ApplicationListenerCertificateProps
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();
Modifier and Type | Interface and Description |
---|---|
static class |
ApplicationListenerCertificateProps.Builder
A builder for
ApplicationListenerCertificateProps |
static class |
ApplicationListenerCertificateProps.Jsii$Proxy
An implementation for
ApplicationListenerCertificateProps |
Modifier and Type | Method and Description |
---|---|
static ApplicationListenerCertificateProps.Builder |
builder() |
default java.util.List<java.lang.String> |
getCertificateArns()
Deprecated.
Use `certificates` instead.
|
default java.util.List<IListenerCertificate> |
getCertificates()
Certificates to attach.
|
IApplicationListener |
getListener()
The listener to attach the rule to.
|
IApplicationListener getListener()
@Deprecated default java.util.List<java.lang.String> getCertificateArns()
Duplicates are not allowed.
Default: - One of 'certificates' and 'certificateArns' is required.
default java.util.List<IListenerCertificate> getCertificates()
Duplicates are not allowed.
Default: - One of 'certificates' and 'certificateArns' is required.
static ApplicationListenerCertificateProps.Builder builder()