Interface CfnGatewayRoutePropsMixin.GrpcGatewayRouteActionProperty

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

@Stability(Stable) public static interface CfnGatewayRoutePropsMixin.GrpcGatewayRouteActionProperty extends software.amazon.jsii.JsiiSerializable
An object that represents the action to take if a match is determined.

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.appmesh.*;
 GrpcGatewayRouteActionProperty grpcGatewayRouteActionProperty = GrpcGatewayRouteActionProperty.builder()
         .rewrite(GrpcGatewayRouteRewriteProperty.builder()
                 .hostname(GatewayRouteHostnameRewriteProperty.builder()
                         .defaultTargetHostname("defaultTargetHostname")
                         .build())
                 .build())
         .target(GatewayRouteTargetProperty.builder()
                 .port(123)
                 .virtualService(GatewayRouteVirtualServiceProperty.builder()
                         .virtualServiceName("virtualServiceName")
                         .build())
                 .build())
         .build();
 

See Also: