Show / Hide Table of Contents

Class CfnVirtualGateway.VirtualGatewayTlsValidationContextProperty

An object that represents a Transport Layer Security (TLS) validation context.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualgateway-virtualgatewaytlsvalidationcontext.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 virtualGatewayTlsValidationContextProperty = new VirtualGatewayTlsValidationContextProperty {
                 Trust = new VirtualGatewayTlsValidationContextTrustProperty {
                     Acm = new VirtualGatewayTlsValidationContextAcmTrustProperty {
                         CertificateAuthorityArns = new [] { "certificateAuthorityArns" }
                     },
                     File = new VirtualGatewayTlsValidationContextFileTrustProperty {
                         CertificateChain = "certificateChain"
                     },
                     Sds = new VirtualGatewayTlsValidationContextSdsTrustProperty {
                         SecretName = "secretName"
                     }
                 },

                 // the properties below are optional
                 SubjectAlternativeNames = new SubjectAlternativeNamesProperty {
                     Match = new SubjectAlternativeNameMatchersProperty {
                         Exact = new [] { "exact" }
                     }
                 }
             };

Synopsis

Constructors

VirtualGatewayTlsValidationContextProperty()

An object that represents a Transport Layer Security (TLS) validation context.

Properties

SubjectAlternativeNames

A reference to an object that represents the SANs for a virtual gateway's listener's Transport Layer Security (TLS) validation context.

Trust

A reference to where to retrieve the trust chain when validating a peer’s Transport Layer Security (TLS) certificate.

Constructors

VirtualGatewayTlsValidationContextProperty()

An object that represents a Transport Layer Security (TLS) validation context.

public VirtualGatewayTlsValidationContextProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualgateway-virtualgatewaytlsvalidationcontext.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 virtualGatewayTlsValidationContextProperty = new VirtualGatewayTlsValidationContextProperty {
                 Trust = new VirtualGatewayTlsValidationContextTrustProperty {
                     Acm = new VirtualGatewayTlsValidationContextAcmTrustProperty {
                         CertificateAuthorityArns = new [] { "certificateAuthorityArns" }
                     },
                     File = new VirtualGatewayTlsValidationContextFileTrustProperty {
                         CertificateChain = "certificateChain"
                     },
                     Sds = new VirtualGatewayTlsValidationContextSdsTrustProperty {
                         SecretName = "secretName"
                     }
                 },

                 // the properties below are optional
                 SubjectAlternativeNames = new SubjectAlternativeNamesProperty {
                     Match = new SubjectAlternativeNameMatchersProperty {
                         Exact = new [] { "exact" }
                     }
                 }
             };

Properties

SubjectAlternativeNames

A reference to an object that represents the SANs for a virtual gateway's listener's Transport Layer Security (TLS) validation context.

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

object

Remarks

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

Trust

A reference to where to retrieve the trust chain when validating a peer’s Transport Layer Security (TLS) certificate.

public object Trust { get; set; }
Property Value

object

Remarks

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

Implements

CfnVirtualGateway.IVirtualGatewayTlsValidationContextProperty
Back to top Generated by DocFX