Class CfnIntegrationPropsMixin.TlsConfigProperty
The TlsConfig property specifies the TLS configuration for a private integration.
Implements
Inherited Members
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.
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 |
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.
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
Remarks
The server name is also included in the TLS handshake to support Server Name Indication (SNI) or virtual hosting.