Show / Hide Table of Contents

Class CfnVirtualNode.ListenerTlsFileCertificateProperty

An object that represents a local file certificate.

Inheritance
object
CfnVirtualNode.ListenerTlsFileCertificateProperty
Implements
CfnVirtualNode.IListenerTlsFileCertificateProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnVirtualNode.ListenerTlsFileCertificateProperty : CfnVirtualNode.IListenerTlsFileCertificateProperty
Syntax (vb)
Public Class CfnVirtualNode.ListenerTlsFileCertificateProperty Implements CfnVirtualNode.IListenerTlsFileCertificateProperty
Remarks

The certificate must meet specific requirements and you must have proxy authorization enabled. For more information, see Transport Layer Security (TLS) .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-listenertlsfilecertificate.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.AppMesh;

             var listenerTlsFileCertificateProperty = new ListenerTlsFileCertificateProperty {
                 CertificateChain = "certificateChain",
                 PrivateKey = "privateKey"
             };

Synopsis

Constructors

ListenerTlsFileCertificateProperty()

An object that represents a local file certificate.

Properties

CertificateChain

The certificate chain for the certificate.

PrivateKey

The private key for a certificate stored on the file system of the virtual node that the proxy is running on.

Constructors

ListenerTlsFileCertificateProperty()

An object that represents a local file certificate.

public ListenerTlsFileCertificateProperty()
Remarks

The certificate must meet specific requirements and you must have proxy authorization enabled. For more information, see Transport Layer Security (TLS) .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-listenertlsfilecertificate.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.AppMesh;

             var listenerTlsFileCertificateProperty = new ListenerTlsFileCertificateProperty {
                 CertificateChain = "certificateChain",
                 PrivateKey = "privateKey"
             };

Properties

CertificateChain

The certificate chain for the certificate.

public string CertificateChain { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-listenertlsfilecertificate.html#cfn-appmesh-virtualnode-listenertlsfilecertificate-certificatechain

PrivateKey

The private key for a certificate stored on the file system of the virtual node that the proxy is running on.

public string PrivateKey { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-listenertlsfilecertificate.html#cfn-appmesh-virtualnode-listenertlsfilecertificate-privatekey

Implements

CfnVirtualNode.IListenerTlsFileCertificateProperty
Back to top Generated by DocFX