Enum HttpIntegrationType
java.lang.Object
java.lang.Enum<HttpIntegrationType>
software.amazon.awscdk.services.apigatewayv2.HttpIntegrationType
- All Implemented Interfaces:
Serializable
,Comparable<HttpIntegrationType>
,java.lang.constant.Constable
@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)",
date="2024-09-11T18:01:10.751Z")
@Stability(Stable)
public enum HttpIntegrationType
extends Enum<HttpIntegrationType>
Supported integration types.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionIntegration type is an AWS proxy.Integration type is an HTTP proxy. -
Method Summary
Modifier and TypeMethodDescriptionstatic HttpIntegrationType
Returns the enum constant of this type with the specified name.static HttpIntegrationType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
HTTP_PROXY
Integration type is an HTTP proxy.For integrating the route or method request with an HTTP endpoint, with the client request passed through as-is. This is also referred to as HTTP proxy integration. For HTTP API private integrations, use an HTTP_PROXY integration.
- See Also:
-
AWS_PROXY
Integration type is an AWS proxy.For integrating the route or method request with a Lambda function or other AWS service action. This integration is also referred to as a Lambda proxy integration.
- See Also:
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-