CfnListenerCertificateProps
- class aws_cdk.aws_elasticloadbalancingv2.CfnListenerCertificateProps(*, certificates, listener_arn)
Bases:
object
Properties 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.
- Link:
- 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 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.