Interface GatewayRouteProps
- All Superinterfaces:
GatewayRouteBaseProps
,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
GatewayRouteProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:23:56.915Z")
@Stability(Stable)
public interface GatewayRouteProps
extends software.amazon.jsii.JsiiSerializable, GatewayRouteBaseProps
Properties to define a new GatewayRoute.
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.appmesh.*; GatewayRouteSpec gatewayRouteSpec; VirtualGateway virtualGateway; GatewayRouteProps gatewayRouteProps = GatewayRouteProps.builder() .routeSpec(gatewayRouteSpec) .virtualGateway(virtualGateway) // the properties below are optional .gatewayRouteName("gatewayRouteName") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forGatewayRouteProps
static final class
An implementation forGatewayRouteProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic GatewayRouteProps.Builder
builder()
The VirtualGateway this GatewayRoute is associated with.Methods inherited from interface software.amazon.awscdk.services.appmesh.GatewayRouteBaseProps
getGatewayRouteName, getRouteSpec
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getVirtualGateway
The VirtualGateway this GatewayRoute is associated with. -
builder
- Returns:
- a
GatewayRouteProps.Builder
ofGatewayRouteProps
-