Show / Hide Table of Contents

Interface CfnVirtualNode.IListenerTlsCertificateProperty

An object that represents a listener's Transport Layer Security (TLS) certificate.

Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnVirtualNode.IListenerTlsCertificateProperty
Syntax (vb)
Public Interface CfnVirtualNode.IListenerTlsCertificateProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-listenertlscertificate.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 listenerTlsCertificateProperty = new ListenerTlsCertificateProperty {
                 Acm = new ListenerTlsAcmCertificateProperty {
                     CertificateArn = "certificateArn"
                 },
                 File = new ListenerTlsFileCertificateProperty {
                     CertificateChain = "certificateChain",
                     PrivateKey = "privateKey"
                 },
                 Sds = new ListenerTlsSdsCertificateProperty {
                     SecretName = "secretName"
                 }
             };

Synopsis

Properties

Acm

A reference to an object that represents an AWS Certificate Manager certificate.

File

A reference to an object that represents a local file certificate.

Sds

A reference to an object that represents a listener's Secret Discovery Service certificate.

Properties

Acm

A reference to an object that represents an AWS Certificate Manager certificate.

object? Acm { get; }
Property Value

object

Remarks

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

File

A reference to an object that represents a local file certificate.

object? File { get; }
Property Value

object

Remarks

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

Sds

A reference to an object that represents a listener's Secret Discovery Service certificate.

object? Sds { get; }
Property Value

object

Remarks

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

Back to top Generated by DocFX