Interface CallApiGatewayRestApiEndpointJsonataProps
- All Superinterfaces:
AssignableStateOptions,CallApiGatewayEndpointBaseOptions,CallApiGatewayEndpointJsonataBaseProps,CallApiGatewayRestApiEndpointOptions,software.amazon.jsii.JsiiSerializable,JsonataCommonOptions,StateBaseProps,TaskStateBaseOptions,TaskStateJsonataBaseProps
- All Known Implementing Classes:
CallApiGatewayRestApiEndpointJsonataProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-24T13:34:48.039Z")
@Stability(Stable)
public interface CallApiGatewayRestApiEndpointJsonataProps
extends software.amazon.jsii.JsiiSerializable, CallApiGatewayEndpointJsonataBaseProps, CallApiGatewayRestApiEndpointOptions
Properties for calling an REST API Endpoint using JSONata.
Example:
import software.amazon.awscdk.services.apigateway.*;
RestApi api;
CallApiGatewayRestApiEndpoint.jsonata(this, "Endpoint", CallApiGatewayRestApiEndpointJsonataProps.builder()
.api(api)
.stageName("Stage")
.method(HttpMethod.PUT)
.integrationPattern(IntegrationPattern.WAIT_FOR_TASK_TOKEN)
.headers(TaskInput.fromObject(Map.of(
"TaskToken", "{% States.Array($states.context.taskToken) %}")))
.build());
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCallApiGatewayRestApiEndpointJsonataPropsstatic final classAn implementation forCallApiGatewayRestApiEndpointJsonataProps -
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.CallApiGatewayRestApiEndpointOptions
getApi, getRegion, 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.StateBaseProps
getComment, getQueryLanguage, getStateNameMethods inherited from interface software.amazon.awscdk.services.stepfunctions.TaskStateBaseOptions
getCredentials, getHeartbeat, getHeartbeatTimeout, getIntegrationPattern, getTaskTimeout, getTimeout
-
Method Details
-
builder
-