Show / Hide Table of Contents

Class CfnVirtualGateway.VirtualGatewayListenerTlsCertificateProperty

An object that represents a listener's Transport Layer Security (TLS) certificate.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualgateway-virtualgatewaylistenertlscertificate.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 virtualGatewayListenerTlsCertificateProperty = new VirtualGatewayListenerTlsCertificateProperty {
                 Acm = new VirtualGatewayListenerTlsAcmCertificateProperty {
                     CertificateArn = "certificateArn"
                 },
                 File = new VirtualGatewayListenerTlsFileCertificateProperty {
                     CertificateChain = "certificateChain",
                     PrivateKey = "privateKey"
                 },
                 Sds = new VirtualGatewayListenerTlsSdsCertificateProperty {
                     SecretName = "secretName"
                 }
             };

Synopsis

Constructors

VirtualGatewayListenerTlsCertificateProperty()

An object that represents a listener's Transport Layer Security (TLS) certificate.

Properties

Acm

A reference to an object that represents an Certificate Manager certificate.

File

A reference to an object that represents a local file certificate.

Sds

A reference to an object that represents a virtual gateway's listener's Secret Discovery Service certificate.

Constructors

VirtualGatewayListenerTlsCertificateProperty()

An object that represents a listener's Transport Layer Security (TLS) certificate.

public VirtualGatewayListenerTlsCertificateProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualgateway-virtualgatewaylistenertlscertificate.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 virtualGatewayListenerTlsCertificateProperty = new VirtualGatewayListenerTlsCertificateProperty {
                 Acm = new VirtualGatewayListenerTlsAcmCertificateProperty {
                     CertificateArn = "certificateArn"
                 },
                 File = new VirtualGatewayListenerTlsFileCertificateProperty {
                     CertificateChain = "certificateChain",
                     PrivateKey = "privateKey"
                 },
                 Sds = new VirtualGatewayListenerTlsSdsCertificateProperty {
                     SecretName = "secretName"
                 }
             };

Properties

Acm

A reference to an object that represents 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-virtualgatewaylistenertlscertificate.html#cfn-appmesh-virtualgateway-virtualgatewaylistenertlscertificate-acm

Type union: either IResolvable or CfnVirtualGateway.IVirtualGatewayListenerTlsAcmCertificateProperty

File

A reference to an object that represents a local file certificate.

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

object

Remarks

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

Type union: either IResolvable or CfnVirtualGateway.IVirtualGatewayListenerTlsFileCertificateProperty

Sds

A reference to an object that represents a virtual gateway's listener's Secret Discovery Service certificate.

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

object

Remarks

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

Type union: either IResolvable or CfnVirtualGateway.IVirtualGatewayListenerTlsSdsCertificateProperty

Implements

CfnVirtualGateway.IVirtualGatewayListenerTlsCertificateProperty
Back to top Generated by DocFX