interface ActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ApiGatewayV2.Mixins.CfnRoutingRulePropsMixin.ActionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapigatewayv2/mixins#CfnRoutingRulePropsMixin_ActionProperty |
Java | software.amazon.awscdk.mixins.preview.services.apigatewayv2.mixins.CfnRoutingRulePropsMixin.ActionProperty |
Python | aws_cdk.mixins_preview.aws_apigatewayv2.mixins.CfnRoutingRulePropsMixin.ActionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_apigatewayv2 » mixins » CfnRoutingRulePropsMixin » ActionProperty |
Represents a routing rule action.
The only supported action is invokeApi .
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 actionProperty: apigatewayv2_mixins.CfnRoutingRulePropsMixin.ActionProperty = {
invokeApi: {
apiId: 'apiId',
stage: 'stage',
stripBasePath: false,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| invoke | IResolvable | Action | Represents an InvokeApi action. |
invokeApi?
Type:
IResolvable | Action
(optional)
Represents an InvokeApi action.

.NET
Go
Java
Python
TypeScript