Show / Hide Table of Contents

Class CfnVirtualGateway.VirtualGatewayListenerTlsValidationContextTrustProperty

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

Inheritance
object
CfnVirtualGateway.VirtualGatewayListenerTlsValidationContextTrustProperty
Implements
CfnVirtualGateway.IVirtualGatewayListenerTlsValidationContextTrustProperty
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 CfnVirtualGateway.VirtualGatewayListenerTlsValidationContextTrustProperty : CfnVirtualGateway.IVirtualGatewayListenerTlsValidationContextTrustProperty
Syntax (vb)
Public Class CfnVirtualGateway.VirtualGatewayListenerTlsValidationContextTrustProperty Implements CfnVirtualGateway.IVirtualGatewayListenerTlsValidationContextTrustProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualgateway-virtualgatewaylistenertlsvalidationcontexttrust.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 virtualGatewayListenerTlsValidationContextTrustProperty = new VirtualGatewayListenerTlsValidationContextTrustProperty {
                 File = new VirtualGatewayTlsValidationContextFileTrustProperty {
                     CertificateChain = "certificateChain"
                 },
                 Sds = new VirtualGatewayTlsValidationContextSdsTrustProperty {
                     SecretName = "secretName"
                 }
             };

Synopsis

Constructors

VirtualGatewayListenerTlsValidationContextTrustProperty()

An object that represents a virtual gateway's 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 virtual gateway's listener's Transport Layer Security (TLS) Secret Discovery Service validation context trust.

Constructors

VirtualGatewayListenerTlsValidationContextTrustProperty()

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

public VirtualGatewayListenerTlsValidationContextTrustProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualgateway-virtualgatewaylistenertlsvalidationcontexttrust.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 virtualGatewayListenerTlsValidationContextTrustProperty = new VirtualGatewayListenerTlsValidationContextTrustProperty {
                 File = new VirtualGatewayTlsValidationContextFileTrustProperty {
                     CertificateChain = "certificateChain"
                 },
                 Sds = new VirtualGatewayTlsValidationContextSdsTrustProperty {
                     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-virtualgateway-virtualgatewaylistenertlsvalidationcontexttrust.html#cfn-appmesh-virtualgateway-virtualgatewaylistenertlsvalidationcontexttrust-file

Type union: either IResolvable or CfnVirtualGateway.IVirtualGatewayTlsValidationContextFileTrustProperty

Sds

A reference to an object that represents a virtual gateway's 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-virtualgateway-virtualgatewaylistenertlsvalidationcontexttrust.html#cfn-appmesh-virtualgateway-virtualgatewaylistenertlsvalidationcontexttrust-sds

Type union: either IResolvable or CfnVirtualGateway.IVirtualGatewayTlsValidationContextSdsTrustProperty

Implements

CfnVirtualGateway.IVirtualGatewayListenerTlsValidationContextTrustProperty
Back to top Generated by DocFX