Show / Hide Table of Contents

Interface IApplicationListenerCertificateProps

Properties for adding a set of certificates to a listener.

Namespace: Amazon.CDK.AWS.ElasticLoadBalancingV2
Assembly: Amazon.CDK.AWS.ElasticLoadBalancingV2.dll
Syntax (csharp)
public interface IApplicationListenerCertificateProps
Syntax (vb)
Public Interface IApplicationListenerCertificateProps
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.ElasticLoadBalancingV2;

ApplicationListener applicationListener;
ListenerCertificate listenerCertificate;

var applicationListenerCertificateProps = new ApplicationListenerCertificateProps {
    Listener = applicationListener,

    // the properties below are optional
    CertificateArns = new [] { "certificateArns" },
    Certificates = new [] { listenerCertificate }
};

Synopsis

Properties

CertificateArns

(deprecated) ARNs of certificates to attach.

Certificates

Certificates to attach.

Listener

The listener to attach the rule to.

Properties

CertificateArns

(deprecated) ARNs of certificates to attach.

virtual string[] CertificateArns { get; }
Property Value

System.String[]

Remarks

Duplicates are not allowed.

Default: - One of 'certificates' and 'certificateArns' is required.

Stability: Deprecated

Certificates

Certificates to attach.

virtual IListenerCertificate[] Certificates { get; }
Property Value

IListenerCertificate[]

Remarks

Duplicates are not allowed.

Default: - One of 'certificates' and 'certificateArns' is required.

Listener

The listener to attach the rule to.

IApplicationListener Listener { get; }
Property Value

IApplicationListener

Back to top Generated by DocFX