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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRoutingRulePropsMixin.ActionInvokeApiPropertystatic final classAn implementation forCfnRoutingRulePropsMixin.ActionInvokeApiProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApiId
The API identifier of the target API.- See Also:
-
getStage
The name of the target stage.- See Also:
-
getStripBasePath
The strip base path setting.When true, API Gateway strips the incoming matched base path when forwarding the request to the target API.
Returns union: either
BooleanorIResolvable- See Also:
-
builder
-