package awsappmesh // 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 "github.com/aws/aws-cdk-go/awscdk" // // var gatewayRouteSpec gatewayRouteSpec // var virtualGateway virtualGateway // // gatewayRouteProps := &GatewayRouteProps{ // RouteSpec: gatewayRouteSpec, // VirtualGateway: virtualGateway, // // // the properties below are optional // GatewayRouteName: jsii.String("gatewayRouteName"), // } // type GatewayRouteProps struct { // What protocol the route uses. RouteSpec GatewayRouteSpec `field:"required" json:"routeSpec" yaml:"routeSpec"` // The name of the GatewayRoute. GatewayRouteName *string `field:"optional" json:"gatewayRouteName" yaml:"gatewayRouteName"` // The VirtualGateway this GatewayRoute is associated with. VirtualGateway IVirtualGateway `field:"required" json:"virtualGateway" yaml:"virtualGateway"` }