@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-22T10:27:19.445Z") @Stability(value=Stable) public interface CallApiGatewayRestApiEndpointProps extends software.amazon.jsii.JsiiSerializable, CallApiGatewayEndpointBaseProps
Example:
import software.amazon.awscdk.services.apigateway.*;
RestApi restApi = new RestApi(this, "MyRestApi");
CallApiGatewayRestApiEndpoint invokeTask = CallApiGatewayRestApiEndpoint.Builder.create(this, "Call REST API")
.api(restApi)
.stageName("prod")
.method(HttpMethod.GET)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CallApiGatewayRestApiEndpointProps.Builder
A builder for
CallApiGatewayRestApiEndpointProps |
static class |
CallApiGatewayRestApiEndpointProps.Jsii$Proxy
An implementation for
CallApiGatewayRestApiEndpointProps |
| Modifier and Type | Method and Description |
|---|---|
static CallApiGatewayRestApiEndpointProps.Builder |
builder() |
IRestApi |
getApi()
API to call.
|
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 IRestApi getApi()
@Stability(value=Stable) @NotNull String getStageName()
@Stability(value=Stable) static CallApiGatewayRestApiEndpointProps.Builder builder()
builder in interface CallApiGatewayEndpointBasePropsbuilder in interface TaskStateBasePropsCallApiGatewayRestApiEndpointProps.Builder of CallApiGatewayRestApiEndpointPropsCopyright © 2021. All rights reserved.