ApplicationListenerCertificate¶
-
class
aws_cdk.aws_elasticloadbalancingv2.
ApplicationListenerCertificate
(scope, id, *, listener, certificate_arns=None, certificates=None)¶ Bases:
aws_cdk.core.Construct
Add certificates to a listener.
- Parameters
scope (
Construct
) –id (
str
) –listener (
IApplicationListener
) – The listener to attach the rule to.certificate_arns (
Optional
[List
[str
]]) – (deprecated) ARNs of certificates to attach. Duplicates are not allowed. Default: - One of ‘certificates’ and ‘certificateArns’ is required.certificates (
Optional
[List
[IListenerCertificate
]]) – Certificates to attach. Duplicates are not allowed. Default: - One of ‘certificates’ and ‘certificateArns’ is required.
Methods
-
to_string
()¶ Returns a string representation of this construct.
- Return type
str
Attributes
-
node
¶ The construct tree node associated with this construct.
- Return type
Static Methods
-
classmethod
is_construct
(x)¶ Return whether the given object is a Construct.
- Parameters
x (
Any
) –- Return type
bool