ListenerCertificate¶
-
class
aws_cdk.aws_elasticloadbalancingv2.
ListenerCertificate
(certificate_arn)¶ Bases:
object
A certificate source for an ELBv2 listener.
- ExampleMetadata
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_elasticloadbalancingv2 as elbv2 listener_certificate = elbv2.ListenerCertificate.from_arn("certificateArn")
- Parameters
certificate_arn (
str
) –
Attributes
-
certificate_arn
¶ The ARN of the certificate to use.
- Return type
str
Static Methods
-
classmethod
from_arn
(certificate_arn)¶ Use any certificate, identified by its ARN, as a listener certificate.
- Parameters
certificate_arn (
str
) –- Return type
-
classmethod
from_certificate_manager
(acm_certificate)¶ Use an ACM certificate as a listener certificate.
- Parameters
acm_certificate (
ICertificate
) –- Return type