@Generated(value="jsii-pacmak/1.72.0 (build 4b8828b)", date="2023-01-03T16:22:40.465Z") @Stability(value=Stable) public interface CallApiGatewayHttpApiEndpointProps extends software.amazon.jsii.JsiiSerializable, CallApiGatewayEndpointBaseProps
Example:
import software.amazon.awscdk.services.apigatewayv2.*;
HttpApi httpApi = new HttpApi(this, "MyHttpApi");
CallApiGatewayHttpApiEndpoint invokeTask = CallApiGatewayHttpApiEndpoint.Builder.create(this, "Call HTTP API")
.apiId(httpApi.getApiId())
.apiStack(Stack.of(httpApi))
.method(HttpMethod.GET)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CallApiGatewayHttpApiEndpointProps.Builder
A builder for
CallApiGatewayHttpApiEndpointProps |
static class |
CallApiGatewayHttpApiEndpointProps.Jsii$Proxy
An implementation for
CallApiGatewayHttpApiEndpointProps |
| Modifier and Type | Method and Description |
|---|---|
static CallApiGatewayHttpApiEndpointProps.Builder |
builder() |
String |
getApiId()
The Id of the API to call.
|
Stack |
getApiStack()
The Stack in which the API is defined.
|
default String |
getStageName()
Name of the stage where the API is deployed to in API Gateway.
|
getApiPath, getAuthType, getHeaders, getMethod, getQueryParameters, getRequestBodygetComment, getHeartbeat, getInputPath, getIntegrationPattern, getOutputPath, getResultPath, getResultSelector, getTimeout@Stability(value=Stable) @NotNull String getApiId()
@Stability(value=Stable) @NotNull Stack getApiStack()
@Stability(value=Stable) @Nullable default String getStageName()
Default: '$default'
@Stability(value=Stable) static CallApiGatewayHttpApiEndpointProps.Builder builder()
builder in interface CallApiGatewayEndpointBasePropsbuilder in interface TaskStateBasePropsCallApiGatewayHttpApiEndpointProps.Builder of CallApiGatewayHttpApiEndpointPropsCopyright © 2023. All rights reserved.