Interface CallApiGatewayRestApiEndpointJsonPathProps
- All Superinterfaces:
AssignableStateOptions,CallApiGatewayEndpointBaseOptions,CallApiGatewayEndpointJsonPathBaseProps,CallApiGatewayRestApiEndpointOptions,software.amazon.jsii.JsiiSerializable,JsonPathCommonOptions,StateBaseProps,TaskStateBaseOptions,TaskStateJsonPathBaseProps
- All Known Implementing Classes:
CallApiGatewayRestApiEndpointJsonPathProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:18.718Z")
@Stability(Stable)
public interface CallApiGatewayRestApiEndpointJsonPathProps
extends software.amazon.jsii.JsiiSerializable, CallApiGatewayEndpointJsonPathBaseProps, CallApiGatewayRestApiEndpointOptions
Properties for calling an REST API Endpoint using JSONPath.
Example:
import software.amazon.awscdk.services.apigateway.*;
RestApi api;
CallApiGatewayRestApiEndpoint.jsonPath(this, "Endpoint", CallApiGatewayRestApiEndpointJsonPathProps.builder()
.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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCallApiGatewayRestApiEndpointJsonPathPropsstatic final classAn implementation forCallApiGatewayRestApiEndpointJsonPathProps -
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.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.TaskStateJsonPathBaseProps
getResultPath, getResultSelector
-
Method Details
-
builder
-