Show / Hide Table of Contents

Class CfnVirtualGatewayPropsMixin.VirtualGatewayTlsValidationContextTrustProperty

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

Inheritance
object
CfnVirtualGatewayPropsMixin.VirtualGatewayTlsValidationContextTrustProperty
Implements
CfnVirtualGatewayPropsMixin.IVirtualGatewayTlsValidationContextTrustProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.AppMesh
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnVirtualGatewayPropsMixin.VirtualGatewayTlsValidationContextTrustProperty : CfnVirtualGatewayPropsMixin.IVirtualGatewayTlsValidationContextTrustProperty
Syntax (vb)
Public Class CfnVirtualGatewayPropsMixin.VirtualGatewayTlsValidationContextTrustProperty Implements CfnVirtualGatewayPropsMixin.IVirtualGatewayTlsValidationContextTrustProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualgateway-virtualgatewaytlsvalidationcontexttrust.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.CfnPropertyMixins.AWS.AppMesh;

             var virtualGatewayTlsValidationContextTrustProperty = new VirtualGatewayTlsValidationContextTrustProperty {
                 Acm = new VirtualGatewayTlsValidationContextAcmTrustProperty {
                     CertificateAuthorityArns = new [] { "certificateAuthorityArns" }
                 },
                 File = new VirtualGatewayTlsValidationContextFileTrustProperty {
                     CertificateChain = "certificateChain"
                 },
                 Sds = new VirtualGatewayTlsValidationContextSdsTrustProperty {
                     SecretName = "secretName"
                 }
             };

Synopsis

Constructors

VirtualGatewayTlsValidationContextTrustProperty()

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

Properties

Acm

A reference to an object that represents a Transport Layer Security (TLS) validation context trust for an Certificate Manager certificate.

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 Transport Layer Security (TLS) Secret Discovery Service validation context trust.

Constructors

VirtualGatewayTlsValidationContextTrustProperty()

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

public VirtualGatewayTlsValidationContextTrustProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualgateway-virtualgatewaytlsvalidationcontexttrust.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.CfnPropertyMixins.AWS.AppMesh;

             var virtualGatewayTlsValidationContextTrustProperty = new VirtualGatewayTlsValidationContextTrustProperty {
                 Acm = new VirtualGatewayTlsValidationContextAcmTrustProperty {
                     CertificateAuthorityArns = new [] { "certificateAuthorityArns" }
                 },
                 File = new VirtualGatewayTlsValidationContextFileTrustProperty {
                     CertificateChain = "certificateChain"
                 },
                 Sds = new VirtualGatewayTlsValidationContextSdsTrustProperty {
                     SecretName = "secretName"
                 }
             };

Properties

Acm

A reference to an object that represents a Transport Layer Security (TLS) validation context trust for an Certificate Manager certificate.

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

object

Remarks

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

Type union: either IResolvable or CfnVirtualGatewayPropsMixin.IVirtualGatewayTlsValidationContextAcmTrustProperty

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-virtualgatewaytlsvalidationcontexttrust.html#cfn-appmesh-virtualgateway-virtualgatewaytlsvalidationcontexttrust-file

Type union: either IResolvable or CfnVirtualGatewayPropsMixin.IVirtualGatewayTlsValidationContextFileTrustProperty

Sds

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

Type union: either IResolvable or CfnVirtualGatewayPropsMixin.IVirtualGatewayTlsValidationContextSdsTrustProperty

Implements

CfnVirtualGatewayPropsMixin.IVirtualGatewayTlsValidationContextTrustProperty
Back to top Generated by DocFX