Show / Hide Table of Contents

Class CfnVirtualNode.ClientTlsCertificateProperty

An object that represents the client's certificate.

Inheritance
object
CfnVirtualNode.ClientTlsCertificateProperty
Implements
CfnVirtualNode.IClientTlsCertificateProperty
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.ClientTlsCertificateProperty : CfnVirtualNode.IClientTlsCertificateProperty
Syntax (vb)
Public Class CfnVirtualNode.ClientTlsCertificateProperty Implements CfnVirtualNode.IClientTlsCertificateProperty
Remarks

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

Synopsis

Constructors

ClientTlsCertificateProperty()

An object that represents the client's certificate.

Properties

File

An object that represents a local file certificate.

Sds

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

Constructors

ClientTlsCertificateProperty()

An object that represents the client's certificate.

public ClientTlsCertificateProperty()
Remarks

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

Properties

File

An object that represents a local file certificate.

public object? File { get; set; }
Property Value

object

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-clienttlscertificate.html#cfn-appmesh-virtualnode-clienttlscertificate-file

Type union: either IResolvable or CfnVirtualNode.IListenerTlsFileCertificateProperty

Sds

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

public object? Sds { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnVirtualNode.IListenerTlsSdsCertificateProperty

Implements

CfnVirtualNode.IClientTlsCertificateProperty
Back to top Generated by DocFX