Interface CfnRoutingRulePropsMixin.ActionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRoutingRulePropsMixin.ActionProperty.Jsii$Proxy
- Enclosing class:
CfnRoutingRulePropsMixin
@Stability(Stable)
public static interface CfnRoutingRulePropsMixin.ActionProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.apigatewayv2.*;
ActionProperty actionProperty = ActionProperty.builder()
.invokeApi(ActionInvokeApiProperty.builder()
.apiId("apiId")
.stage("stage")
.stripBasePath(false)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRoutingRulePropsMixin.ActionPropertystatic final classAn implementation forCfnRoutingRulePropsMixin.ActionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInvokeApi
Represents an InvokeApi action.Returns union: either
IResolvableorCfnRoutingRulePropsMixin.ActionInvokeApiProperty- See Also:
-
builder
-