Interface Subnet.UpdateStages.WithRouteTable
-
- All Known Subinterfaces:
Subnet.Update
- Enclosing interface:
- Subnet.UpdateStages
public static interface Subnet.UpdateStages.WithRouteTableThe stage of a subnet update allowing to specify a route table to associate with the subnet, or remove an existing association.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Subnet.UpdatewithExistingRouteTable(RouteTable routeTable)Specifies an existing route table to associate with the subnet.Subnet.UpdatewithExistingRouteTable(String resourceId)Specifies an existing route table to associate with the subnet.Subnet.UpdatewithoutRouteTable()Removes the association with a route table, if any.
-
-
-
Method Detail
-
withExistingRouteTable
Subnet.Update withExistingRouteTable(RouteTable routeTable)
Specifies an existing route table to associate with the subnet.- Parameters:
routeTable- an existing route table to associate- Returns:
- the next stage of the update
-
withExistingRouteTable
Subnet.Update withExistingRouteTable(String resourceId)
Specifies an existing route table to associate with the subnet.- Parameters:
resourceId- the resource ID of an existing route table- Returns:
- the next stage of the update
-
withoutRouteTable
Subnet.Update withoutRouteTable()
Removes the association with a route table, if any.- Returns:
- the next stage of the update
-
-