Route Table Route Args
data class RouteTableRouteArgs(val addressPrefix: Output<String>, val name: Output<String>, val nextHopInIpAddress: Output<String>? = null, val nextHopType: Output<String>) : ConvertibleToJava<RouteTableRouteArgs>
Properties
Link copied to clipboard
The destination to which the route applies. Can be CIDR (such as 10.1.0.0/16
) or Azure Service Tag (such as ApiManagement
, AzureBackup
or AzureMonitor
) format.
Link copied to clipboard
Contains the IP address packets should be forwarded to. Next hop values are only allowed in routes where the next hop type is VirtualAppliance
.
Link copied to clipboard
The type of Azure hop the packet should be sent to. Possible values are VirtualNetworkGateway
, VnetLocal
, Internet
, VirtualAppliance
and None
.