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