Enum SecurityPolicy

java.lang.Object
java.lang.Enum<SecurityPolicy>
software.amazon.awscdk.services.apigateway.SecurityPolicy
All Implemented Interfaces:
Serializable, Comparable<SecurityPolicy>, java.lang.constant.Constable

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:45.088Z") @Stability(Stable) public enum SecurityPolicy extends Enum<SecurityPolicy>
The minimum version of the SSL protocol that you want API Gateway to use for HTTPS connections.

Example:

 Object acmCertificateForExampleCom;
 DomainName.Builder.create(this, "custom-domain")
         .domainName("example.com")
         .certificate(acmCertificateForExampleCom)
         .endpointType(EndpointType.EDGE) // default is REGIONAL
         .securityPolicy(SecurityPolicy.TLS_1_2)
         .build();
 
  • Enum Constant Details

    • TLS_1_0

      @Stability(Stable) public static final SecurityPolicy TLS_1_0
      Cipher suite TLS 1.0.
    • TLS_1_2

      @Stability(Stable) public static final SecurityPolicy TLS_1_2
      Cipher suite TLS 1.2.
  • Method Details

    • values

      public static SecurityPolicy[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static SecurityPolicy valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null