class ApplicationListenerCertificate (construct)
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ElasticLoadBalancingV2.ApplicationListenerCertificate |
Java | software.amazon.awscdk.services.elasticloadbalancingv2.ApplicationListenerCertificate |
Python | aws_cdk.aws_elasticloadbalancingv2.ApplicationListenerCertificate |
TypeScript (source) | @aws-cdk/aws-elasticloadbalancingv2 » ApplicationListenerCertificate |
Implements
IConstruct, IConstruct, IDependable
Add 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 * as elbv2 from '@aws-cdk/aws-elasticloadbalancingv2';
declare const applicationListener: elbv2.ApplicationListener;
declare const listenerCertificate: elbv2.ListenerCertificate;
const applicationListenerCertificate = new elbv2.ApplicationListenerCertificate(this, 'MyApplicationListenerCertificate', {
listener: applicationListener,
// the properties below are optional
certificateArns: ['certificateArns'],
certificates: [listenerCertificate],
});
Initializer
new ApplicationListenerCertificate(scope: Construct, id: string, props: ApplicationListenerCertificateProps)
Parameters
- scope
Construct - id
string - props
ApplicationListener Certificate Props
Construct Props
| Name | Type | Description |
|---|---|---|
| listener | IApplication | The listener to attach the rule to. |
| certificate | string[] | ARNs of certificates to attach. |
| certificates? | IListener[] | Certificates to attach. |
listener
Type:
IApplication
The listener to attach the rule to.
certificateArns?
⚠️ Deprecated: Use certificates instead.
Type:
string[]
(optional, default: One of 'certificates' and 'certificateArns' is required.)
ARNs of certificates to attach.
Duplicates are not allowed.
certificates?
Type:
IListener[]
(optional, default: One of 'certificates' and 'certificateArns' is required.)
Certificates to attach.
Duplicates are not allowed.
Properties
| Name | Type | Description |
|---|---|---|
| node | Construct | The construct tree node associated with this construct. |
node
Type:
Construct
The construct tree node associated with this construct.
Methods
| Name | Description |
|---|---|
| to | Returns a string representation of this construct. |
toString()
public toString(): string
Returns
string
Returns a string representation of this construct.

.NET
Java
Python
TypeScript (