Enum ContentHandling

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:44.928Z") @Stability(Stable) public enum ContentHandling extends Enum<ContentHandling>
Example:

 Function getBookHandler;
 LambdaIntegration getBookIntegration;
 LambdaIntegration getBookIntegration = LambdaIntegration.Builder.create(getBookHandler)
         .contentHandling(ContentHandling.CONVERT_TO_TEXT) // convert to base64
         .credentialsPassthrough(true)
         .build();
 
  • Enum Constant Details

    • CONVERT_TO_BINARY

      @Stability(Stable) public static final ContentHandling CONVERT_TO_BINARY
      Converts a request payload from a base64-encoded string to a binary blob.
    • CONVERT_TO_TEXT

      @Stability(Stable) public static final ContentHandling CONVERT_TO_TEXT
      Converts a request payload from a binary blob to a base64-encoded string.
  • Method Details

    • values

      public static ContentHandling[] 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 ContentHandling 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