Interface CfnDomainName.MutualTlsAuthenticationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDomainName.MutualTlsAuthenticationProperty.Jsii$Proxy
Enclosing class:
CfnDomainName

@Stability(Stable) public static interface CfnDomainName.MutualTlsAuthenticationProperty extends software.amazon.jsii.JsiiSerializable
The mutual TLS authentication configuration for a custom domain name.

If specified, API Gateway performs two-way authentication between the client and the server. Clients must present a trusted certificate to access your API.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.apigateway.*;
 MutualTlsAuthenticationProperty mutualTlsAuthenticationProperty = MutualTlsAuthenticationProperty.builder()
         .truststoreUri("truststoreUri")
         .truststoreVersion("truststoreVersion")
         .build();
 

See Also: