Interface CallApiGatewayHttpApiEndpointProps
- All Superinterfaces:
AssignableStateOptions,CallApiGatewayEndpointBaseOptions,CallApiGatewayEndpointBaseProps,CallApiGatewayHttpApiEndpointOptions,software.amazon.jsii.JsiiSerializable,JsonataCommonOptions,JsonPathCommonOptions,StateBaseProps,TaskStateBaseOptions,TaskStateBaseProps
- All Known Implementing Classes:
CallApiGatewayHttpApiEndpointProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-04T09:27:51.332Z")
@Stability(Stable)
public interface CallApiGatewayHttpApiEndpointProps
extends software.amazon.jsii.JsiiSerializable, CallApiGatewayEndpointBaseProps, CallApiGatewayHttpApiEndpointOptions
Properties for calling an HTTP API Endpoint.
Example:
import software.amazon.awscdk.services.apigatewayv2.*;
HttpApi httpApi = new HttpApi(this, "MyHttpApi");
CallApiGatewayHttpApiEndpoint invokeTask = CallApiGatewayHttpApiEndpoint.Builder.create(this, "Call HTTP API")
.apiId(httpApi.getApiId())
.apiStack(Stack.of(httpApi))
.method(HttpMethod.GET)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCallApiGatewayHttpApiEndpointPropsstatic final classAn implementation forCallApiGatewayHttpApiEndpointProps -
Method Summary
Static MethodsMethods inherited from interface software.amazon.awscdk.services.stepfunctions.AssignableStateOptions
getAssignMethods inherited from interface software.amazon.awscdk.services.stepfunctions.tasks.CallApiGatewayEndpointBaseOptions
getApiPath, getAuthType, getHeaders, getMethod, getQueryParameters, getRequestBodyMethods inherited from interface software.amazon.awscdk.services.stepfunctions.tasks.CallApiGatewayHttpApiEndpointOptions
getApiId, getApiStack, getStageNameMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJsonMethods inherited from interface software.amazon.awscdk.services.stepfunctions.JsonataCommonOptions
getOutputsMethods inherited from interface software.amazon.awscdk.services.stepfunctions.JsonPathCommonOptions
getInputPath, getOutputPathMethods inherited from interface software.amazon.awscdk.services.stepfunctions.StateBaseProps
getComment, getQueryLanguage, getStateNameMethods inherited from interface software.amazon.awscdk.services.stepfunctions.TaskStateBaseOptions
getCredentials, getHeartbeat, getHeartbeatTimeout, getIntegrationPattern, getTaskTimeout, getTimeoutMethods inherited from interface software.amazon.awscdk.services.stepfunctions.TaskStateBaseProps
getResultPath, getResultSelector
-
Method Details
-
builder
-