Show / Hide Table of Contents

Class CfnVirtualNode.ListenerTlsValidationContextTrustProperty

An object that represents a listener's Transport Layer Security (TLS) validation context trust.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-listenertlsvalidationcontexttrust.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 listenerTlsValidationContextTrustProperty = new ListenerTlsValidationContextTrustProperty {
                 File = new TlsValidationContextFileTrustProperty {
                     CertificateChain = "certificateChain"
                 },
                 Sds = new TlsValidationContextSdsTrustProperty {
                     SecretName = "secretName"
                 }
             };

Synopsis

Constructors

ListenerTlsValidationContextTrustProperty()

An object that represents a listener's Transport Layer Security (TLS) validation context trust.

Properties

File

An object that represents a Transport Layer Security (TLS) validation context trust for a local file.

Sds

A reference to an object that represents a listener's Transport Layer Security (TLS) Secret Discovery Service validation context trust.

Constructors

ListenerTlsValidationContextTrustProperty()

An object that represents a listener's Transport Layer Security (TLS) validation context trust.

public ListenerTlsValidationContextTrustProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-listenertlsvalidationcontexttrust.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 listenerTlsValidationContextTrustProperty = new ListenerTlsValidationContextTrustProperty {
                 File = new TlsValidationContextFileTrustProperty {
                     CertificateChain = "certificateChain"
                 },
                 Sds = new TlsValidationContextSdsTrustProperty {
                     SecretName = "secretName"
                 }
             };

Properties

File

An object that represents a Transport Layer Security (TLS) validation context trust for a local file.

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

object

Remarks

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

Type union: either IResolvable or CfnVirtualNode.ITlsValidationContextFileTrustProperty

Sds

A reference to an object that represents a listener's Transport Layer Security (TLS) Secret Discovery Service validation context trust.

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

object

Remarks

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

Type union: either IResolvable or CfnVirtualNode.ITlsValidationContextSdsTrustProperty

Implements

CfnVirtualNode.IListenerTlsValidationContextTrustProperty
Back to top Generated by DocFX