interface ActionInvokeApiProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ApiGatewayV2.CfnRoutingRulePropsMixin.ActionInvokeApiProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsapigatewayv2#CfnRoutingRulePropsMixin_ActionInvokeApiProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.apigatewayv2.CfnRoutingRulePropsMixin.ActionInvokeApiProperty |
Python | aws_cdk.cfn_property_mixins.aws_apigatewayv2.CfnRoutingRulePropsMixin.ActionInvokeApiProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_apigatewayv2 » 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 { aws_apigatewayv2 as apigatewayv2 } from '@aws-cdk/cfn-property-mixins';
const actionInvokeApiProperty: apigatewayv2.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