Interface CfnRoutingRule.ActionInvokeApiProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRoutingRule.ActionInvokeApiProperty.Jsii$Proxy
- Enclosing class:
CfnRoutingRule
@Stability(Stable)
public static interface CfnRoutingRule.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.services.apigatewayv2.*;
ActionInvokeApiProperty actionInvokeApiProperty = ActionInvokeApiProperty.builder()
.apiId("apiId")
.stage("stage")
// the properties below are optional
.stripBasePath(false)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRoutingRule.ActionInvokeApiPropertystatic final classAn implementation forCfnRoutingRule.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
-