interface ActionInvokeApiProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ApiGatewayV2.Mixins.CfnRoutingRulePropsMixin.ActionInvokeApiProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapigatewayv2/mixins#CfnRoutingRulePropsMixin_ActionInvokeApiProperty |
Java | software.amazon.awscdk.mixins.preview.services.apigatewayv2.mixins.CfnRoutingRulePropsMixin.ActionInvokeApiProperty |
Python | aws_cdk.mixins_preview.aws_apigatewayv2.mixins.CfnRoutingRulePropsMixin.ActionInvokeApiProperty |
TypeScript | @aws-cdk/mixins-preview » aws_apigatewayv2 » mixins » CfnRoutingRulePropsMixin » ActionInvokeApiProperty |
Represents an InvokeApi action.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as apigatewayv2_mixins } from '@aws-cdk/mixins-preview/aws-apigatewayv2';
const actionInvokeApiProperty: apigatewayv2_mixins.CfnRoutingRulePropsMixin.ActionInvokeApiProperty = {
apiId: 'apiId',
stage: 'stage',
stripBasePath: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| api | string | The API identifier of the target API. |
| stage? | string | The name of the target stage. |
| strip | boolean | IResolvable | The strip base path setting. |
apiId?
Type:
string
(optional)
The API identifier of the target API.
stage?
Type:
string
(optional)
The name of the target stage.
stripBasePath?
Type:
boolean | IResolvable
(optional)
The strip base path setting.
When true, API Gateway strips the incoming matched base path when forwarding the request to the target API.

.NET
Go
Java
Python
TypeScript