Show / Hide Table of Contents

Interface CfnVirtualGateway.IVirtualGatewayListenerTlsFileCertificateProperty

An object that represents a local file certificate.

Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnVirtualGateway.IVirtualGatewayListenerTlsFileCertificateProperty
Syntax (vb)
Public Interface CfnVirtualGateway.IVirtualGatewayListenerTlsFileCertificateProperty
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-virtualgateway-virtualgatewaylistenertlsfilecertificate.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 virtualGatewayListenerTlsFileCertificateProperty = new VirtualGatewayListenerTlsFileCertificateProperty {
                 CertificateChain = "certificateChain",
                 PrivateKey = "privateKey"
             };

Synopsis

Properties

CertificateChain

The certificate chain for the certificate.

PrivateKey

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

Properties

CertificateChain

The certificate chain for the certificate.

string CertificateChain { get; }
Property Value

string

Remarks

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

PrivateKey

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

string PrivateKey { get; }
Property Value

string

Remarks

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

Back to top Generated by DocFX