@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)", date="2023-05-19T23:09:34.339Z") @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, getRequestBody
getComment, 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 CallApiGatewayEndpointBaseProps
builder
in interface TaskStateBaseProps
CallApiGatewayHttpApiEndpointProps.Builder
of CallApiGatewayHttpApiEndpointProps
Copyright © 2023. All rights reserved.