Show / Hide Table of Contents

Class CfnIntegrationPropsMixin.TlsConfigProperty

The TlsConfig property specifies the TLS configuration for a private integration.

Inheritance
object
CfnIntegrationPropsMixin.TlsConfigProperty
Implements
CfnIntegrationPropsMixin.ITlsConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.ApiGatewayV2.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnIntegrationPropsMixin.TlsConfigProperty : CfnIntegrationPropsMixin.ITlsConfigProperty
Syntax (vb)
Public Class CfnIntegrationPropsMixin.TlsConfigProperty Implements CfnIntegrationPropsMixin.ITlsConfigProperty
Remarks

If you specify a TLS configuration, private integration traffic uses the HTTPS protocol. Supported only for HTTP APIs.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-integration-tlsconfig.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.Mixins.Preview.AWS.ApiGatewayV2.Mixins;

             var tlsConfigProperty = new TlsConfigProperty {
                 ServerNameToVerify = "serverNameToVerify"
             };

Synopsis

Constructors

TlsConfigProperty()

The TlsConfig property specifies the TLS configuration for a private integration.

Properties

ServerNameToVerify

If you specify a server name, API Gateway uses it to verify the hostname on the integration's certificate.

Constructors

TlsConfigProperty()

The TlsConfig property specifies the TLS configuration for a private integration.

public TlsConfigProperty()
Remarks

If you specify a TLS configuration, private integration traffic uses the HTTPS protocol. Supported only for HTTP APIs.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-integration-tlsconfig.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.Mixins.Preview.AWS.ApiGatewayV2.Mixins;

             var tlsConfigProperty = new TlsConfigProperty {
                 ServerNameToVerify = "serverNameToVerify"
             };

Properties

ServerNameToVerify

If you specify a server name, API Gateway uses it to verify the hostname on the integration's certificate.

public string? ServerNameToVerify { get; set; }
Property Value

string

Remarks

The server name is also included in the TLS handshake to support Server Name Indication (SNI) or virtual hosting.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-integration-tlsconfig.html#cfn-apigatewayv2-integration-tlsconfig-servernametoverify

Implements

CfnIntegrationPropsMixin.ITlsConfigProperty
Back to top Generated by DocFX