@Generated(value="jsii-pacmak/1.70.0 (build 03c2f6f)", date="2022-11-01T13:16:57.177Z") @Stability(value=Experimental) public interface CallApiGatewayHttpApiEndpointProps extends software.amazon.jsii.JsiiSerializable, CallApiGatewayEndpointBaseProps
Example:
import software.amazon.awscdk.core.*;
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()
(experimental) The Id of the API to call.
|
Stack |
getApiStack()
(experimental) The Stack in which the API is defined.
|
default String |
getStageName()
(experimental) 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=Experimental) @NotNull String getApiId()
@Stability(value=Experimental) @NotNull Stack getApiStack()
@Stability(value=Experimental) @Nullable default String getStageName()
Default: '$default'
@Stability(value=Experimental) static CallApiGatewayHttpApiEndpointProps.Builder builder()
builder in interface CallApiGatewayEndpointBasePropsbuilder in interface TaskStateBasePropsCallApiGatewayHttpApiEndpointProps.Builder of CallApiGatewayHttpApiEndpointPropsCopyright © 2022. All rights reserved.