AWS Classic
GatewayRoute
Provides an AWS App Mesh gateway route resource.
Example Usage
using Pulumi;
using Aws = Pulumi.Aws;
class MyStack : Stack
{
public MyStack()
{
var example = new Aws.AppMesh.GatewayRoute("example", new Aws.AppMesh.GatewayRouteArgs
{
MeshName = "example-service-mesh",
VirtualGatewayName = aws_appmesh_virtual_gateway.Example.Name,
Spec = new Aws.AppMesh.Inputs.GatewayRouteSpecArgs
{
HttpRoute = new Aws.AppMesh.Inputs.GatewayRouteSpecHttpRouteArgs
{
Action = new Aws.AppMesh.Inputs.GatewayRouteSpecHttpRouteActionArgs
{
Target = new Aws.AppMesh.Inputs.GatewayRouteSpecHttpRouteActionTargetArgs
{
VirtualService = new Aws.AppMesh.Inputs.GatewayRouteSpecHttpRouteActionTargetVirtualServiceArgs
{
VirtualServiceName = aws_appmesh_virtual_service.Example.Name,
},
},
},
Match = new Aws.AppMesh.Inputs.GatewayRouteSpecHttpRouteMatchArgs
{
Prefix = "/",
},
},
},
Tags =
{
{ "Environment", "test" },
},
});
}
}
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/appmesh"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := appmesh.NewGatewayRoute(ctx, "example", &appmesh.GatewayRouteArgs{
MeshName: pulumi.String("example-service-mesh"),
VirtualGatewayName: pulumi.Any(aws_appmesh_virtual_gateway.Example.Name),
Spec: &appmesh.GatewayRouteSpecArgs{
HttpRoute: &appmesh.GatewayRouteSpecHttpRouteArgs{
Action: &appmesh.GatewayRouteSpecHttpRouteActionArgs{
Target: &appmesh.GatewayRouteSpecHttpRouteActionTargetArgs{
VirtualService: &appmesh.GatewayRouteSpecHttpRouteActionTargetVirtualServiceArgs{
VirtualServiceName: pulumi.Any(aws_appmesh_virtual_service.Example.Name),
},
},
},
Match: &appmesh.GatewayRouteSpecHttpRouteMatchArgs{
Prefix: pulumi.String("/"),
},
},
},
Tags: pulumi.StringMap{
"Environment": pulumi.String("test"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import java.util.*;
import java.io.*;
import java.nio.*;
import com.pulumi.*;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new GatewayRoute("example", GatewayRouteArgs.builder()
.meshName("example-service-mesh")
.virtualGatewayName(aws_appmesh_virtual_gateway.example().name())
.spec(GatewayRouteSpecArgs.builder()
.httpRoute(GatewayRouteSpecHttpRouteArgs.builder()
.action(GatewayRouteSpecHttpRouteActionArgs.builder()
.target(GatewayRouteSpecHttpRouteActionTargetArgs.builder()
.virtualService(GatewayRouteSpecHttpRouteActionTargetVirtualServiceArgs.builder()
.virtualServiceName(aws_appmesh_virtual_service.example().name())
.build())
.build())
.build())
.match(GatewayRouteSpecHttpRouteMatchArgs.builder()
.prefix("/")
.build())
.build())
.build())
.tags(Map.of("Environment", "test"))
.build());
}
}
import pulumi
import pulumi_aws as aws
example = aws.appmesh.GatewayRoute("example",
mesh_name="example-service-mesh",
virtual_gateway_name=aws_appmesh_virtual_gateway["example"]["name"],
spec=aws.appmesh.GatewayRouteSpecArgs(
http_route=aws.appmesh.GatewayRouteSpecHttpRouteArgs(
action=aws.appmesh.GatewayRouteSpecHttpRouteActionArgs(
target=aws.appmesh.GatewayRouteSpecHttpRouteActionTargetArgs(
virtual_service=aws.appmesh.GatewayRouteSpecHttpRouteActionTargetVirtualServiceArgs(
virtual_service_name=aws_appmesh_virtual_service["example"]["name"],
),
),
),
match=aws.appmesh.GatewayRouteSpecHttpRouteMatchArgs(
prefix="/",
),
),
),
tags={
"Environment": "test",
})
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.appmesh.GatewayRoute("example", {
meshName: "example-service-mesh",
virtualGatewayName: aws_appmesh_virtual_gateway.example.name,
spec: {
httpRoute: {
action: {
target: {
virtualService: {
virtualServiceName: aws_appmesh_virtual_service.example.name,
},
},
},
match: {
prefix: "/",
},
},
},
tags: {
Environment: "test",
},
});
resources:
example:
type: aws:appmesh:GatewayRoute
properties:
meshName: example-service-mesh
virtualGatewayName: ${aws_appmesh_virtual_gateway.example.name}
spec:
httpRoute:
action:
target:
virtualService:
virtualServiceName: ${aws_appmesh_virtual_service.example.name}
match:
prefix: /
tags:
Environment: test
Create a GatewayRoute Resource
new GatewayRoute(name: string, args: GatewayRouteArgs, opts?: CustomResourceOptions);
@overload
def GatewayRoute(resource_name: str,
opts: Optional[ResourceOptions] = None,
mesh_name: Optional[str] = None,
mesh_owner: Optional[str] = None,
name: Optional[str] = None,
spec: Optional[GatewayRouteSpecArgs] = None,
tags: Optional[Mapping[str, str]] = None,
virtual_gateway_name: Optional[str] = None)
@overload
def GatewayRoute(resource_name: str,
args: GatewayRouteArgs,
opts: Optional[ResourceOptions] = None)
func NewGatewayRoute(ctx *Context, name string, args GatewayRouteArgs, opts ...ResourceOption) (*GatewayRoute, error)
public GatewayRoute(string name, GatewayRouteArgs args, CustomResourceOptions? opts = null)
public GatewayRoute(String name, GatewayRouteArgs args)
public GatewayRoute(String name, GatewayRouteArgs args, CustomResourceOptions options)
type: aws:appmesh:GatewayRoute
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GatewayRouteArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args GatewayRouteArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args GatewayRouteArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GatewayRouteArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GatewayRouteArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
GatewayRoute Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The GatewayRoute resource accepts the following input properties:
- Mesh
Name string The name of the service mesh in which to create the gateway route. Must be between 1 and 255 characters in length.
- Spec
Gateway
Route Spec Args The gateway route specification to apply.
- Virtual
Gateway stringName The name of the virtual gateway to associate the gateway route with. Must be between 1 and 255 characters in length.
- Mesh
Owner string The AWS account ID of the service mesh's owner. Defaults to the account ID the AWS provider is currently connected to.
- Name string
The name to use for the gateway route. Must be between 1 and 255 characters in length.
- Dictionary<string, string>
A map of tags to assign to the resource. .If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- Mesh
Name string The name of the service mesh in which to create the gateway route. Must be between 1 and 255 characters in length.
- Spec
Gateway
Route Spec Args The gateway route specification to apply.
- Virtual
Gateway stringName The name of the virtual gateway to associate the gateway route with. Must be between 1 and 255 characters in length.
- Mesh
Owner string The AWS account ID of the service mesh's owner. Defaults to the account ID the AWS provider is currently connected to.
- Name string
The name to use for the gateway route. Must be between 1 and 255 characters in length.
- map[string]string
A map of tags to assign to the resource. .If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- mesh
Name String The name of the service mesh in which to create the gateway route. Must be between 1 and 255 characters in length.
- spec
Gateway
Route Spec Args The gateway route specification to apply.
- virtual
Gateway StringName The name of the virtual gateway to associate the gateway route with. Must be between 1 and 255 characters in length.
- mesh
Owner String The AWS account ID of the service mesh's owner. Defaults to the account ID the AWS provider is currently connected to.
- name String
The name to use for the gateway route. Must be between 1 and 255 characters in length.
- Map<String,String>
A map of tags to assign to the resource. .If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- mesh
Name string The name of the service mesh in which to create the gateway route. Must be between 1 and 255 characters in length.
- spec
Gateway
Route Spec Args The gateway route specification to apply.
- virtual
Gateway stringName The name of the virtual gateway to associate the gateway route with. Must be between 1 and 255 characters in length.
- mesh
Owner string The AWS account ID of the service mesh's owner. Defaults to the account ID the AWS provider is currently connected to.
- name string
The name to use for the gateway route. Must be between 1 and 255 characters in length.
- {[key: string]: string}
A map of tags to assign to the resource. .If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- mesh_
name str The name of the service mesh in which to create the gateway route. Must be between 1 and 255 characters in length.
- spec
Gateway
Route Spec Args The gateway route specification to apply.
- virtual_
gateway_ strname The name of the virtual gateway to associate the gateway route with. Must be between 1 and 255 characters in length.
- mesh_
owner str The AWS account ID of the service mesh's owner. Defaults to the account ID the AWS provider is currently connected to.
- name str
The name to use for the gateway route. Must be between 1 and 255 characters in length.
- Mapping[str, str]
A map of tags to assign to the resource. .If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- mesh
Name String The name of the service mesh in which to create the gateway route. Must be between 1 and 255 characters in length.
- spec Property Map
The gateway route specification to apply.
- virtual
Gateway StringName The name of the virtual gateway to associate the gateway route with. Must be between 1 and 255 characters in length.
- mesh
Owner String The AWS account ID of the service mesh's owner. Defaults to the account ID the AWS provider is currently connected to.
- name String
The name to use for the gateway route. Must be between 1 and 255 characters in length.
- Map<String>
A map of tags to assign to the resource. .If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
Outputs
All input properties are implicitly available as output properties. Additionally, the GatewayRoute resource produces the following output properties:
- Arn string
The ARN of the gateway route.
- Created
Date string The creation date of the gateway route.
- Id string
The provider-assigned unique ID for this managed resource.
- Last
Updated stringDate The last update date of the gateway route.
- Resource
Owner string The resource owner's AWS account ID.
- Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider .
- Arn string
The ARN of the gateway route.
- Created
Date string The creation date of the gateway route.
- Id string
The provider-assigned unique ID for this managed resource.
- Last
Updated stringDate The last update date of the gateway route.
- Resource
Owner string The resource owner's AWS account ID.
- map[string]string
A map of tags assigned to the resource, including those inherited from the provider .
- arn String
The ARN of the gateway route.
- created
Date String The creation date of the gateway route.
- id String
The provider-assigned unique ID for this managed resource.
- last
Updated StringDate The last update date of the gateway route.
- resource
Owner String The resource owner's AWS account ID.
- Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider .
- arn string
The ARN of the gateway route.
- created
Date string The creation date of the gateway route.
- id string
The provider-assigned unique ID for this managed resource.
- last
Updated stringDate The last update date of the gateway route.
- resource
Owner string The resource owner's AWS account ID.
- {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider .
- arn str
The ARN of the gateway route.
- created_
date str The creation date of the gateway route.
- id str
The provider-assigned unique ID for this managed resource.
- last_
updated_ strdate The last update date of the gateway route.
- resource_
owner str The resource owner's AWS account ID.
- Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider .
- arn String
The ARN of the gateway route.
- created
Date String The creation date of the gateway route.
- id String
The provider-assigned unique ID for this managed resource.
- last
Updated StringDate The last update date of the gateway route.
- resource
Owner String The resource owner's AWS account ID.
- Map<String>
A map of tags assigned to the resource, including those inherited from the provider .
Look up an Existing GatewayRoute Resource
Get an existing GatewayRoute resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: GatewayRouteState, opts?: CustomResourceOptions): GatewayRoute
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
created_date: Optional[str] = None,
last_updated_date: Optional[str] = None,
mesh_name: Optional[str] = None,
mesh_owner: Optional[str] = None,
name: Optional[str] = None,
resource_owner: Optional[str] = None,
spec: Optional[GatewayRouteSpecArgs] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None,
virtual_gateway_name: Optional[str] = None) -> GatewayRoute
func GetGatewayRoute(ctx *Context, name string, id IDInput, state *GatewayRouteState, opts ...ResourceOption) (*GatewayRoute, error)
public static GatewayRoute Get(string name, Input<string> id, GatewayRouteState? state, CustomResourceOptions? opts = null)
public static GatewayRoute get(String name, Output<String> id, GatewayRouteState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Arn string
The ARN of the gateway route.
- Created
Date string The creation date of the gateway route.
- Last
Updated stringDate The last update date of the gateway route.
- Mesh
Name string The name of the service mesh in which to create the gateway route. Must be between 1 and 255 characters in length.
- Mesh
Owner string The AWS account ID of the service mesh's owner. Defaults to the account ID the AWS provider is currently connected to.
- Name string
The name to use for the gateway route. Must be between 1 and 255 characters in length.
- Resource
Owner string The resource owner's AWS account ID.
- Spec
Gateway
Route Spec Args The gateway route specification to apply.
- Dictionary<string, string>
A map of tags to assign to the resource. .If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider .
- Virtual
Gateway stringName The name of the virtual gateway to associate the gateway route with. Must be between 1 and 255 characters in length.
- Arn string
The ARN of the gateway route.
- Created
Date string The creation date of the gateway route.
- Last
Updated stringDate The last update date of the gateway route.
- Mesh
Name string The name of the service mesh in which to create the gateway route. Must be between 1 and 255 characters in length.
- Mesh
Owner string The AWS account ID of the service mesh's owner. Defaults to the account ID the AWS provider is currently connected to.
- Name string
The name to use for the gateway route. Must be between 1 and 255 characters in length.
- Resource
Owner string The resource owner's AWS account ID.
- Spec
Gateway
Route Spec Args The gateway route specification to apply.
- map[string]string
A map of tags to assign to the resource. .If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- map[string]string
A map of tags assigned to the resource, including those inherited from the provider .
- Virtual
Gateway stringName The name of the virtual gateway to associate the gateway route with. Must be between 1 and 255 characters in length.
- arn String
The ARN of the gateway route.
- created
Date String The creation date of the gateway route.
- last
Updated StringDate The last update date of the gateway route.
- mesh
Name String The name of the service mesh in which to create the gateway route. Must be between 1 and 255 characters in length.
- mesh
Owner String The AWS account ID of the service mesh's owner. Defaults to the account ID the AWS provider is currently connected to.
- name String
The name to use for the gateway route. Must be between 1 and 255 characters in length.
- resource
Owner String The resource owner's AWS account ID.
- spec
Gateway
Route Spec Args The gateway route specification to apply.
- Map<String,String>
A map of tags to assign to the resource. .If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider .
- virtual
Gateway StringName The name of the virtual gateway to associate the gateway route with. Must be between 1 and 255 characters in length.
- arn string
The ARN of the gateway route.
- created
Date string The creation date of the gateway route.
- last
Updated stringDate The last update date of the gateway route.
- mesh
Name string The name of the service mesh in which to create the gateway route. Must be between 1 and 255 characters in length.
- mesh
Owner string The AWS account ID of the service mesh's owner. Defaults to the account ID the AWS provider is currently connected to.
- name string
The name to use for the gateway route. Must be between 1 and 255 characters in length.
- resource
Owner string The resource owner's AWS account ID.
- spec
Gateway
Route Spec Args The gateway route specification to apply.
- {[key: string]: string}
A map of tags to assign to the resource. .If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider .
- virtual
Gateway stringName The name of the virtual gateway to associate the gateway route with. Must be between 1 and 255 characters in length.
- arn str
The ARN of the gateway route.
- created_
date str The creation date of the gateway route.
- last_
updated_ strdate The last update date of the gateway route.
- mesh_
name str The name of the service mesh in which to create the gateway route. Must be between 1 and 255 characters in length.
- mesh_
owner str The AWS account ID of the service mesh's owner. Defaults to the account ID the AWS provider is currently connected to.
- name str
The name to use for the gateway route. Must be between 1 and 255 characters in length.
- resource_
owner str The resource owner's AWS account ID.
- spec
Gateway
Route Spec Args The gateway route specification to apply.
- Mapping[str, str]
A map of tags to assign to the resource. .If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider .
- virtual_
gateway_ strname The name of the virtual gateway to associate the gateway route with. Must be between 1 and 255 characters in length.
- arn String
The ARN of the gateway route.
- created
Date String The creation date of the gateway route.
- last
Updated StringDate The last update date of the gateway route.
- mesh
Name String The name of the service mesh in which to create the gateway route. Must be between 1 and 255 characters in length.
- mesh
Owner String The AWS account ID of the service mesh's owner. Defaults to the account ID the AWS provider is currently connected to.
- name String
The name to use for the gateway route. Must be between 1 and 255 characters in length.
- resource
Owner String The resource owner's AWS account ID.
- spec Property Map
The gateway route specification to apply.
- Map<String>
A map of tags to assign to the resource. .If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- Map<String>
A map of tags assigned to the resource, including those inherited from the provider .
- virtual
Gateway StringName The name of the virtual gateway to associate the gateway route with. Must be between 1 and 255 characters in length.
Supporting Types
GatewayRouteSpec
- Grpc
Route GatewayRoute Spec Grpc Route The specification of a gRPC gateway route.
- Http2Route
Gateway
Route Spec Http2Route The specification of an HTTP/2 gateway route.
- Http
Route GatewayRoute Spec Http Route The specification of an HTTP gateway route.
- Grpc
Route GatewayRoute Spec Grpc Route The specification of a gRPC gateway route.
- Http2Route
Gateway
Route Spec Http2Route The specification of an HTTP/2 gateway route.
- Http
Route GatewayRoute Spec Http Route The specification of an HTTP gateway route.
- grpc
Route GatewayRoute Spec Grpc Route The specification of a gRPC gateway route.
- http2Route
Gateway
Route Spec Http2Route The specification of an HTTP/2 gateway route.
- http
Route GatewayRoute Spec Http Route The specification of an HTTP gateway route.
- grpc
Route GatewayRoute Spec Grpc Route The specification of a gRPC gateway route.
- http2Route
Gateway
Route Spec Http2Route The specification of an HTTP/2 gateway route.
- http
Route GatewayRoute Spec Http Route The specification of an HTTP gateway route.
- grpc_
route GatewayRoute Spec Grpc Route The specification of a gRPC gateway route.
- http2_
route GatewayRoute Spec Http2Route The specification of an HTTP/2 gateway route.
- http_
route GatewayRoute Spec Http Route The specification of an HTTP gateway route.
- grpc
Route Property Map The specification of a gRPC gateway route.
- http2Route Property Map
The specification of an HTTP/2 gateway route.
- http
Route Property Map The specification of an HTTP gateway route.
GatewayRouteSpecGrpcRoute
- Action
Gateway
Route Spec Grpc Route Action The action to take if a match is determined.
- Match
Gateway
Route Spec Grpc Route Match The criteria for determining a request match.
- Action
Gateway
Route Spec Grpc Route Action The action to take if a match is determined.
- Match
Gateway
Route Spec Grpc Route Match The criteria for determining a request match.
- action
Gateway
Route Spec Grpc Route Action The action to take if a match is determined.
- match
Gateway
Route Spec Grpc Route Match The criteria for determining a request match.
- action
Gateway
Route Spec Grpc Route Action The action to take if a match is determined.
- match
Gateway
Route Spec Grpc Route Match The criteria for determining a request match.
- action
Gateway
Route Spec Grpc Route Action The action to take if a match is determined.
- match
Gateway
Route Spec Grpc Route Match The criteria for determining a request match.
- action Property Map
The action to take if a match is determined.
- match Property Map
The criteria for determining a request match.
GatewayRouteSpecGrpcRouteAction
- Target
Gateway
Route Spec Grpc Route Action Target The target that traffic is routed to when a request matches the gateway route.
- Target
Gateway
Route Spec Grpc Route Action Target The target that traffic is routed to when a request matches the gateway route.
- target
Gateway
Route Spec Grpc Route Action Target The target that traffic is routed to when a request matches the gateway route.
- target
Gateway
Route Spec Grpc Route Action Target The target that traffic is routed to when a request matches the gateway route.
- target
Gateway
Route Spec Grpc Route Action Target The target that traffic is routed to when a request matches the gateway route.
- target Property Map
The target that traffic is routed to when a request matches the gateway route.
GatewayRouteSpecGrpcRouteActionTarget
- Virtual
Service GatewayRoute Spec Grpc Route Action Target Virtual Service The virtual service gateway route target.
- Virtual
Service GatewayRoute Spec Grpc Route Action Target Virtual Service The virtual service gateway route target.
- virtual
Service GatewayRoute Spec Grpc Route Action Target Virtual Service The virtual service gateway route target.
- virtual
Service GatewayRoute Spec Grpc Route Action Target Virtual Service The virtual service gateway route target.
- virtual_
service GatewayRoute Spec Grpc Route Action Target Virtual Service The virtual service gateway route target.
- virtual
Service Property Map The virtual service gateway route target.
GatewayRouteSpecGrpcRouteActionTargetVirtualService
- Virtual
Service stringName The name of the virtual service that traffic is routed to. Must be between 1 and 255 characters in length.
- Virtual
Service stringName The name of the virtual service that traffic is routed to. Must be between 1 and 255 characters in length.
- virtual
Service StringName The name of the virtual service that traffic is routed to. Must be between 1 and 255 characters in length.
- virtual
Service stringName The name of the virtual service that traffic is routed to. Must be between 1 and 255 characters in length.
- virtual_
service_ strname The name of the virtual service that traffic is routed to. Must be between 1 and 255 characters in length.
- virtual
Service StringName The name of the virtual service that traffic is routed to. Must be between 1 and 255 characters in length.
GatewayRouteSpecGrpcRouteMatch
- Service
Name string The fully qualified domain name for the service to match from the request.
- Service
Name string The fully qualified domain name for the service to match from the request.
- service
Name String The fully qualified domain name for the service to match from the request.
- service
Name string The fully qualified domain name for the service to match from the request.
- service_
name str The fully qualified domain name for the service to match from the request.
- service
Name String The fully qualified domain name for the service to match from the request.
GatewayRouteSpecHttp2Route
- Action
Gateway
Route Spec Http2Route Action The action to take if a match is determined.
- Match
Gateway
Route Spec Http2Route Match The criteria for determining a request match.
- Action
Gateway
Route Spec Http2Route Action The action to take if a match is determined.
- Match
Gateway
Route Spec Http2Route Match The criteria for determining a request match.
- action
Gateway
Route Spec Http2Route Action The action to take if a match is determined.
- match
Gateway
Route Spec Http2Route Match The criteria for determining a request match.
- action
Gateway
Route Spec Http2Route Action The action to take if a match is determined.
- match
Gateway
Route Spec Http2Route Match The criteria for determining a request match.
- action
Gateway
Route Spec Http2Route Action The action to take if a match is determined.
- match
Gateway
Route Spec Http2Route Match The criteria for determining a request match.
- action Property Map
The action to take if a match is determined.
- match Property Map
The criteria for determining a request match.
GatewayRouteSpecHttp2RouteAction
- Target
Gateway
Route Spec Http2Route Action Target The target that traffic is routed to when a request matches the gateway route.
- Target
Gateway
Route Spec Http2Route Action Target The target that traffic is routed to when a request matches the gateway route.
- target
Gateway
Route Spec Http2Route Action Target The target that traffic is routed to when a request matches the gateway route.
- target
Gateway
Route Spec Http2Route Action Target The target that traffic is routed to when a request matches the gateway route.
- target
Gateway
Route Spec Http2Route Action Target The target that traffic is routed to when a request matches the gateway route.
- target Property Map
The target that traffic is routed to when a request matches the gateway route.
GatewayRouteSpecHttp2RouteActionTarget
- Virtual
Service GatewayRoute Spec Http2Route Action Target Virtual Service The virtual service gateway route target.
- Virtual
Service GatewayRoute Spec Http2Route Action Target Virtual Service The virtual service gateway route target.
- virtual
Service GatewayRoute Spec Http2Route Action Target Virtual Service The virtual service gateway route target.
- virtual
Service GatewayRoute Spec Http2Route Action Target Virtual Service The virtual service gateway route target.
- virtual_
service GatewayRoute Spec Http2Route Action Target Virtual Service The virtual service gateway route target.
- virtual
Service Property Map The virtual service gateway route target.
GatewayRouteSpecHttp2RouteActionTargetVirtualService
- Virtual
Service stringName The name of the virtual service that traffic is routed to. Must be between 1 and 255 characters in length.
- Virtual
Service stringName The name of the virtual service that traffic is routed to. Must be between 1 and 255 characters in length.
- virtual
Service StringName The name of the virtual service that traffic is routed to. Must be between 1 and 255 characters in length.
- virtual
Service stringName The name of the virtual service that traffic is routed to. Must be between 1 and 255 characters in length.
- virtual_
service_ strname The name of the virtual service that traffic is routed to. Must be between 1 and 255 characters in length.
- virtual
Service StringName The name of the virtual service that traffic is routed to. Must be between 1 and 255 characters in length.
GatewayRouteSpecHttp2RouteMatch
- Prefix string
Specifies the path to match requests with. This parameter must always start with
/
, which by itself matches all requests to the virtual service name.
- Prefix string
Specifies the path to match requests with. This parameter must always start with
/
, which by itself matches all requests to the virtual service name.
- prefix String
Specifies the path to match requests with. This parameter must always start with
/
, which by itself matches all requests to the virtual service name.
- prefix string
Specifies the path to match requests with. This parameter must always start with
/
, which by itself matches all requests to the virtual service name.
- prefix str
Specifies the path to match requests with. This parameter must always start with
/
, which by itself matches all requests to the virtual service name.
- prefix String
Specifies the path to match requests with. This parameter must always start with
/
, which by itself matches all requests to the virtual service name.
GatewayRouteSpecHttpRoute
- Action
Gateway
Route Spec Http Route Action The action to take if a match is determined.
- Match
Gateway
Route Spec Http Route Match The criteria for determining a request match.
- Action
Gateway
Route Spec Http Route Action The action to take if a match is determined.
- Match
Gateway
Route Spec Http Route Match The criteria for determining a request match.
- action
Gateway
Route Spec Http Route Action The action to take if a match is determined.
- match
Gateway
Route Spec Http Route Match The criteria for determining a request match.
- action
Gateway
Route Spec Http Route Action The action to take if a match is determined.
- match
Gateway
Route Spec Http Route Match The criteria for determining a request match.
- action
Gateway
Route Spec Http Route Action The action to take if a match is determined.
- match
Gateway
Route Spec Http Route Match The criteria for determining a request match.
- action Property Map
The action to take if a match is determined.
- match Property Map
The criteria for determining a request match.
GatewayRouteSpecHttpRouteAction
- Target
Gateway
Route Spec Http Route Action Target The target that traffic is routed to when a request matches the gateway route.
- Target
Gateway
Route Spec Http Route Action Target The target that traffic is routed to when a request matches the gateway route.
- target
Gateway
Route Spec Http Route Action Target The target that traffic is routed to when a request matches the gateway route.
- target
Gateway
Route Spec Http Route Action Target The target that traffic is routed to when a request matches the gateway route.
- target
Gateway
Route Spec Http Route Action Target The target that traffic is routed to when a request matches the gateway route.
- target Property Map
The target that traffic is routed to when a request matches the gateway route.
GatewayRouteSpecHttpRouteActionTarget
- Virtual
Service GatewayRoute Spec Http Route Action Target Virtual Service The virtual service gateway route target.
- Virtual
Service GatewayRoute Spec Http Route Action Target Virtual Service The virtual service gateway route target.
- virtual
Service GatewayRoute Spec Http Route Action Target Virtual Service The virtual service gateway route target.
- virtual
Service GatewayRoute Spec Http Route Action Target Virtual Service The virtual service gateway route target.
- virtual_
service GatewayRoute Spec Http Route Action Target Virtual Service The virtual service gateway route target.
- virtual
Service Property Map The virtual service gateway route target.
GatewayRouteSpecHttpRouteActionTargetVirtualService
- Virtual
Service stringName The name of the virtual service that traffic is routed to. Must be between 1 and 255 characters in length.
- Virtual
Service stringName The name of the virtual service that traffic is routed to. Must be between 1 and 255 characters in length.
- virtual
Service StringName The name of the virtual service that traffic is routed to. Must be between 1 and 255 characters in length.
- virtual
Service stringName The name of the virtual service that traffic is routed to. Must be between 1 and 255 characters in length.
- virtual_
service_ strname The name of the virtual service that traffic is routed to. Must be between 1 and 255 characters in length.
- virtual
Service StringName The name of the virtual service that traffic is routed to. Must be between 1 and 255 characters in length.
GatewayRouteSpecHttpRouteMatch
- Prefix string
Specifies the path to match requests with. This parameter must always start with
/
, which by itself matches all requests to the virtual service name.
- Prefix string
Specifies the path to match requests with. This parameter must always start with
/
, which by itself matches all requests to the virtual service name.
- prefix String
Specifies the path to match requests with. This parameter must always start with
/
, which by itself matches all requests to the virtual service name.
- prefix string
Specifies the path to match requests with. This parameter must always start with
/
, which by itself matches all requests to the virtual service name.
- prefix str
Specifies the path to match requests with. This parameter must always start with
/
, which by itself matches all requests to the virtual service name.
- prefix String
Specifies the path to match requests with. This parameter must always start with
/
, which by itself matches all requests to the virtual service name.
Import
App Mesh gateway routes can be imported using mesh_name
and virtual_gateway_name
together with the gateway route’s name
, e.g.,
$ pulumi import aws:appmesh/gatewayRoute:GatewayRoute example mesh/gw1/example-gateway-route
[1]/docs/providers/aws/index.html
Package Details
- Repository
- https://github.com/pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
aws
Terraform Provider.