Interface CfnRoutingRulePropsMixin.ActionInvokeApiProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRoutingRulePropsMixin.ActionInvokeApiProperty.Jsii$Proxy
Enclosing class:
CfnRoutingRulePropsMixin

@Stability(Stable) public static interface CfnRoutingRulePropsMixin.ActionInvokeApiProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.apigatewayv2.*;
 ActionInvokeApiProperty actionInvokeApiProperty = ActionInvokeApiProperty.builder()
         .apiId("apiId")
         .stage("stage")
         .stripBasePath(false)
         .build();
 

See Also: