@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.053Z") @Stability(value=Stable) 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
.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<IListenerCertificate> |
getCertificates()
Certificates to attach.
|
IApplicationListener |
getListener()
The listener to attach the rule to.
|
@Stability(value=Stable) @NotNull IApplicationListener getListener()
@Stability(value=Stable) @Nullable default List<IListenerCertificate> getCertificates()
Duplicates are not allowed.
Default: - One of 'certificates' and 'certificateArns' is required.
@Stability(value=Stable) static ApplicationListenerCertificateProps.Builder builder()
Copyright © 2022. All rights reserved.