@Generated(value="jsii-pacmak/1.58.0 (build f8ba112)", date="2022-05-11T19:24:23.612Z") @Stability(value=Experimental) public enum HttpIntegrationType extends Enum<HttpIntegrationType>
| Enum Constant and Description |
|---|
AWS_PROXY
(experimental) Integration type is an AWS proxy.
|
HTTP_PROXY
(experimental) Integration type is an HTTP proxy.
|
| Modifier and Type | Method and Description |
|---|---|
static HttpIntegrationType |
valueOf(String name)
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.
|
@Stability(value=Experimental) public static final HttpIntegrationType 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.
https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-develop-integrations-http.html@Stability(value=Experimental) public static final HttpIntegrationType 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.
https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-develop-integrations-lambda.htmlpublic static HttpIntegrationType[] values()
for (HttpIntegrationType c : HttpIntegrationType.values()) System.out.println(c);
public static HttpIntegrationType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2022. All rights reserved.