

# AWS.Networking.Route
AWS.Networking.Route

You can define a route node that associates the destination route to the NAT Gateway as the target resource, and adds the route to the associated route table.

## Syntax


```
tosca.nodes.AWS.Networking.Route:
  properties:
    dest\$1cidr\$1blocks: List          
  requirements:
    nat\$1gateway: String
    route\$1table: String
```

## Properties


 `dest_cidr_blocks`    
The list of destination IPv4 routes to the target resource.  
Required: Yes  
Type: List  
Member type: String

## Requirements


 `nat_gateway`    
The [AWS.Networking.NATGateway](https://docs.aws.amazon.com/tnb/latest/ug/node-nat-gateway.html) node reference.  
Required: Yes  
Type: String

 `route_table`    
The [AWS.Networking.RouteTable](https://docs.aws.amazon.com/tnb/latest/ug/node-route-table.html) node reference.  
Required: Yes  
Type: String

## Example


```
Free5GCRoute:
  type: tosca.nodes.AWS.Networking.Route
  properties: 
    dest_cidr_blocks: 
      - 0.0.0.0/0
      - 10.0.0.0/28    
  requirements:
    nat_gateway: Free5GCNatGateway01
    route_table: Free5GCRouteTable
```