Show / Hide Table of Contents

Class CfnListenerCertificateProps

Properties for defining a CfnListenerCertificate.

Inheritance
System.Object
CfnListenerCertificateProps
Implements
ICfnListenerCertificateProps
Namespace: Amazon.CDK.AWS.ElasticLoadBalancingV2
Assembly: Amazon.CDK.AWS.ElasticLoadBalancingV2.dll
Syntax (csharp)
public class CfnListenerCertificateProps : Object, ICfnListenerCertificateProps
Syntax (vb)
Public Class CfnListenerCertificateProps
    Inherits Object
    Implements ICfnListenerCertificateProps
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html

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;

var cfnListenerCertificateProps = new CfnListenerCertificateProps {
    Certificates = new [] { new CertificateProperty {
        CertificateArn = "certificateArn"
    } },
    ListenerArn = "listenerArn"
};

Synopsis

Constructors

CfnListenerCertificateProps()

Properties

Certificates

The certificate.

ListenerArn

The Amazon Resource Name (ARN) of the listener.

Constructors

CfnListenerCertificateProps()

public CfnListenerCertificateProps()

Properties

Certificates

The certificate.

public object Certificates { get; set; }
Property Value

System.Object

Remarks

You can specify one certificate per resource.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-certificates

ListenerArn

The Amazon Resource Name (ARN) of the listener.

public string ListenerArn { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn

Implements

ICfnListenerCertificateProps
Back to top Generated by DocFX