CfnListenerCertificateProps
- class aws_cdk.aws_elasticloadbalancingv2.CfnListenerCertificateProps(*, certificates, listener_arn)
Bases:
objectProperties for defining a
CfnListenerCertificate.- Parameters:
certificates (
Union[IResolvable,Sequence[Union[IResolvable,CertificateProperty,Dict[str,Any]]]]) – The certificate. You can specify one certificate per resource.listener_arn (
str) – The Amazon Resource Name (ARN) of the listener.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_elasticloadbalancingv2 as elbv2 cfn_listener_certificate_props = elbv2.CfnListenerCertificateProps( certificates=[elbv2.CfnListenerCertificate.CertificateProperty( certificate_arn="certificateArn" )], listener_arn="listenerArn" )
Attributes
- certificates
The certificate.
You can specify one certificate per resource.
- listener_arn
The Amazon Resource Name (ARN) of the listener.