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.119.0 (build 1634eac)",
date="2025-11-20T23:37:31.120Z")
@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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCallApiGatewayHttpApiEndpointOptionsstatic final classAn implementation forCallApiGatewayHttpApiEndpointOptions -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApiId
The Id of the API to call. -
getApiStack
The Stack in which the API is defined. -
getStageName
Name of the stage where the API is deployed to in API Gateway.Default: '$default'
-
builder
-