Enum SecurityPolicy
- Namespace
- Amazon.CDK.AWS.APIGateway
- Assembly
- Amazon.CDK.AWS.APIGateway.dll
The minimum version of the SSL protocol that you want API Gateway to use for HTTPS connections.
public enum SecurityPolicy
Fields
TLS_1_0 = 0
Cipher suite TLS 1.0.
TLS_1_2 = 1
Cipher suite TLS 1.2.
Examples
var acmCertificateForExampleCom;
new DomainName(this, "custom-domain", new DomainNameProps {
DomainName = "example.com",
Certificate = acmCertificateForExampleCom,
EndpointType = EndpointType.EDGE, // default is REGIONAL
SecurityPolicy = SecurityPolicy.TLS_1_2
});
Remarks
ExampleMetadata: infused