Interface CallApiGatewayHttpApiEndpointProps
- All Superinterfaces:
CallApiGatewayEndpointBaseProps
,software.amazon.jsii.JsiiSerializable
,TaskStateBaseProps
- All Known Implementing Classes:
CallApiGatewayHttpApiEndpointProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:17.653Z")
@Stability(Stable)
public interface CallApiGatewayHttpApiEndpointProps
extends software.amazon.jsii.JsiiSerializable, CallApiGatewayEndpointBaseProps
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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCallApiGatewayHttpApiEndpointProps
static final class
An implementation forCallApiGatewayHttpApiEndpointProps
-
Method Summary
Methods inherited from interface software.amazon.awscdk.services.stepfunctions.tasks.CallApiGatewayEndpointBaseProps
getApiPath, getAuthType, getHeaders, getMethod, getQueryParameters, getRequestBody
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
Methods inherited from interface software.amazon.awscdk.services.stepfunctions.TaskStateBaseProps
getComment, getCredentials, getHeartbeat, getHeartbeatTimeout, getInputPath, getIntegrationPattern, getOutputPath, getResultPath, getResultSelector, getStateName, getTaskTimeout, getTimeout
-
Method Details
-
getApiId
The Id of the API to call. -
getApiStack
The Stack in which the API is defined. -
getStageName
Name of the stage where the API is deployed to in API Gateway.Default: '$default'
-
builder
-