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();