@Generated(value="jsii-pacmak/1.50.0 (build d1830a4)", date="2022-01-04T15:39:08.594Z") @Stability(value=Experimental) public interface ApplicationListenerCertificateProps extends software.amazon.jsii.JsiiSerializable
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 List<String> |
getCertificateArns()
Deprecated.
Use `certificates` instead.
|
default List<IListenerCertificate> |
getCertificates()
(experimental) Certificates to attach.
|
IApplicationListener |
getListener()
(experimental) The listener to attach the rule to.
|
@Stability(value=Experimental) @NotNull IApplicationListener getListener()
@Stability(value=Deprecated) @Deprecated @Nullable default List<String> getCertificateArns()
Duplicates are not allowed.
Default: - One of 'certificates' and 'certificateArns' is required.
@Stability(value=Experimental) @Nullable default List<IListenerCertificate> getCertificates()
Duplicates are not allowed.
Default: - One of 'certificates' and 'certificateArns' is required.
@Stability(value=Experimental) static ApplicationListenerCertificateProps.Builder builder()
Copyright © 2022. All rights reserved.