Class Fog::Compute::AWS::RouteTables
In: lib/fog/aws/models/compute/route_tables.rb
Parent: Fog::Collection

Methods

all   get   new  

Public Class methods

 Creates a new route table

 AWS.route_tables.new

 ==== Returns

 Returns the details of the new route table

>> AWS.route_tables.new

 <Fog::Compute::AWS::RouteTable
 id=nil,
 vpc_id=nil,
 routes=nil,
 associations=nil,
 tags=nil
 >

Public Instance methods

 Returns an array of all route tables that have been created

 AWS.route_tables.all

 ==== Returns

 Returns an array of all route tables

>> AWS.route_tables.all

 <Fog::Compute::AWS::RouteTables
 filters={}
 [
 <Fog::Compute::AWS::RouteTable
 id="rtb-41e8552f",
 TODO
 >
 ]
 >
 Used to retrieve a route table
 route_table_id is required to get the associated route table information.

 You can run the following command to get the details:
 AWS.route_tables.get("rtb-41e8552f")

 ==== Returns

>> AWS.route_tables.get("rtb-41e8552f")

 <Fog::Compute::AWS::RouteTable
 id="rtb-41e8552f",
 TODO
 >

[Validate]