Interface CallApiGatewayRestApiEndpointProps
- All Superinterfaces:
CallApiGatewayEndpointBaseProps
,software.amazon.jsii.JsiiSerializable
,TaskStateBaseProps
- All Known Implementing Classes:
CallApiGatewayRestApiEndpointProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:47.892Z")
@Stability(Stable)
public interface CallApiGatewayRestApiEndpointProps
extends software.amazon.jsii.JsiiSerializable, CallApiGatewayEndpointBaseProps
Properties for calling an REST API Endpoint.
Example:
import software.amazon.awscdk.services.apigateway.*; RestApi api; CallApiGatewayRestApiEndpoint.Builder.create(this, "Endpoint") .api(api) .stageName("Stage") .method(HttpMethod.PUT) .integrationPattern(IntegrationPattern.WAIT_FOR_TASK_TOKEN) .headers(TaskInput.fromObject(Map.of( "TaskToken", JsonPath.array(JsonPath.getTaskToken())))) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCallApiGatewayRestApiEndpointProps
static final class
An implementation forCallApiGatewayRestApiEndpointProps
-
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, getHeartbeat, getInputPath, getIntegrationPattern, getOutputPath, getResultPath, getResultSelector, getTimeout
-
Method Details
-
getApi
API to call. -
getStageName
Name of the stage where the API is deployed to in API Gateway. -
builder
-