@Generated(value="jsii-pacmak/1.72.0 (build 4b8828b)", date="2023-01-03T16:22:40.469Z") @Stability(value=Stable) public interface CallApiGatewayRestApiEndpointProps extends software.amazon.jsii.JsiiSerializable, CallApiGatewayEndpointBaseProps
Example:
import software.amazon.awscdk.services.apigateway.*;
RestApi api;
CallApiGatewayRestApiEndpoint.Builder.create(this, "Endpoint")
.api(api)
.stageName("Stage")
.method(HttpMethod.PUT)
.integrationPattern(IntegrationPattern.WAIT_FOR_TASK_TOKEN)
.headers(TaskInput.fromObject(Map.of(
"TaskToken", JsonPath.array(JsonPath.getTaskToken()))))
.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 © 2023. All rights reserved.