Show / Hide Table of Contents

Class ApplicationListenerCertificateProps

Properties for adding a set of certificates to a listener.

Inheritance
System.Object
ApplicationListenerCertificateProps
Implements
IApplicationListenerCertificateProps
Namespace: Amazon.CDK.AWS.ElasticLoadBalancingV2
Assembly: Amazon.CDK.AWS.ElasticLoadBalancingV2.dll
Syntax (csharp)
public class ApplicationListenerCertificateProps : Object, IApplicationListenerCertificateProps
Syntax (vb)
Public Class ApplicationListenerCertificateProps
    Inherits Object
    Implements 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

Constructors

ApplicationListenerCertificateProps()

Properties

CertificateArns

(deprecated) ARNs of certificates to attach.

Certificates

Certificates to attach.

Listener

The listener to attach the rule to.

Constructors

ApplicationListenerCertificateProps()

public ApplicationListenerCertificateProps()

Properties

CertificateArns

(deprecated) ARNs of certificates to attach.

public string[] CertificateArns { get; set; }
Property Value

System.String[]

Remarks

Duplicates are not allowed.

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

Stability: Deprecated

Certificates

Certificates to attach.

public IListenerCertificate[] Certificates { get; set; }
Property Value

IListenerCertificate[]

Remarks

Duplicates are not allowed.

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

Listener

The listener to attach the rule to.

public IApplicationListener Listener { get; set; }
Property Value

IApplicationListener

Implements

IApplicationListenerCertificateProps
Back to top Generated by DocFX