interface CfnListenerCertificateProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.ElasticLoadBalancingV2.CfnListenerCertificateProps | 
|  Java | software.amazon.awscdk.services.elasticloadbalancingv2.CfnListenerCertificateProps | 
|  Python | aws_cdk.aws_elasticloadbalancingv2.CfnListenerCertificateProps | 
|  TypeScript | @aws-cdk/aws-elasticloadbalancingv2»CfnListenerCertificateProps | 
Properties for defining a CfnListenerCertificate.
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';
const cfnListenerCertificateProps: elbv2.CfnListenerCertificateProps = {
  certificates: [{
    certificateArn: 'certificateArn',
  }],
  listenerArn: 'listenerArn',
};
Properties
| Name | Type | Description | 
|---|---|---|
| certificates | IResolvable | IResolvable | Certificate[] | The certificate. | 
| listener | string | The Amazon Resource Name (ARN) of the listener. | 
certificates
Type:
IResolvable | IResolvable | Certificate[]
The certificate.
You can specify one certificate per resource.
listenerArn
Type:
string
The Amazon Resource Name (ARN) of the listener.
