Show / Hide Table of Contents

Interface CfnVirtualGateway.IVirtualGatewayTlsValidationContextTrustProperty

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

Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnVirtualGateway.IVirtualGatewayTlsValidationContextTrustProperty
Syntax (vb)
Public Interface CfnVirtualGateway.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.AWS.AppMesh;

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

Synopsis

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.

Properties

Acm

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

object? Acm { get; }
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 CfnVirtualGateway.IVirtualGatewayTlsValidationContextAcmTrustProperty

File

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

object? File { get; }
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 CfnVirtualGateway.IVirtualGatewayTlsValidationContextFileTrustProperty

Sds

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

object? Sds { get; }
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 CfnVirtualGateway.IVirtualGatewayTlsValidationContextSdsTrustProperty

Back to top Generated by DocFX