Interface CallApiGatewayHttpApiEndpointOptions

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Subinterfaces:
CallApiGatewayHttpApiEndpointJsonataProps, CallApiGatewayHttpApiEndpointJsonPathProps, CallApiGatewayHttpApiEndpointProps
All Known Implementing Classes:
CallApiGatewayHttpApiEndpointJsonataProps.Jsii$Proxy, CallApiGatewayHttpApiEndpointJsonPathProps.Jsii$Proxy, CallApiGatewayHttpApiEndpointOptions.Jsii$Proxy, CallApiGatewayHttpApiEndpointProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.106.0 (build e852934)", date="2025-03-04T22:57:33.647Z") @Stability(Stable) public interface CallApiGatewayHttpApiEndpointOptions extends software.amazon.jsii.JsiiSerializable
Base properties for calling an HTTP API Endpoint.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.*;
 import software.amazon.awscdk.services.stepfunctions.tasks.*;
 Stack stack;
 CallApiGatewayHttpApiEndpointOptions callApiGatewayHttpApiEndpointOptions = CallApiGatewayHttpApiEndpointOptions.builder()
         .apiId("apiId")
         .apiStack(stack)
         // the properties below are optional
         .stageName("stageName")
         .build();