aws-cdk-lib.aws_elasticloadbalancingv2.ApplicationListenerCertificateProps

interface ApplicationListenerCertificateProps

LanguageType name
.NETAmazon.CDK.AWS.ElasticLoadBalancingV2.ApplicationListenerCertificateProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awselasticloadbalancingv2#ApplicationListenerCertificateProps
Javasoftware.amazon.awscdk.services.elasticloadbalancingv2.ApplicationListenerCertificateProps
Pythonaws_cdk.aws_elasticloadbalancingv2.ApplicationListenerCertificateProps
TypeScript (source)aws-cdk-lib » aws_elasticloadbalancingv2 » ApplicationListenerCertificateProps

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 { aws_elasticloadbalancingv2 as elbv2 } from 'aws-cdk-lib';

declare const applicationListener: elbv2.ApplicationListener;
declare const listenerCertificate: elbv2.ListenerCertificate;
const applicationListenerCertificateProps: elbv2.ApplicationListenerCertificateProps = {
  listener: applicationListener,

  // the properties below are optional
  certificates: [listenerCertificate],
};

Properties

NameTypeDescription
listenerIApplicationListenerThe listener to attach the rule to.
certificates?IListenerCertificate[]Certificates to attach.

listener

Type: IApplicationListener

The listener to attach the rule to.


certificates?

Type: IListenerCertificate[] (optional, default: One of 'certificates' and 'certificateArns' is required.)

Certificates to attach.

Duplicates are not allowed.