interface CfnListenerCertificateProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ElasticLoadBalancingV2.CfnListenerCertificateProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awselasticloadbalancingv2#CfnListenerCertificateProps |
Java | software.amazon.awscdk.services.elasticloadbalancingv2.CfnListenerCertificateProps |
Python | aws_cdk.aws_elasticloadbalancingv2.CfnListenerCertificateProps |
TypeScript | aws-cdk-lib » 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 { aws_elasticloadbalancingv2 as elbv2 } from 'aws-cdk-lib';
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.

.NET
Go
Java
Python
TypeScript