Amazon.EC2.AmazonEC2Client.DescribeRouteTablesAsync C# (CSharp) Method

DescribeRouteTablesAsync() public method

Describes one or more of your route tables.

Each subnet in your VPC must be associated with a route table. If a subnet is not explicitly associated with any route table, it is implicitly associated with the main route table. This command does not return the subnet ID for implicit associations.

For more information about route tables, see Route Tables in the Amazon Virtual Private Cloud User Guide.

public DescribeRouteTablesAsync ( System cancellationToken = default(CancellationToken) ) : Task
cancellationToken System /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. ///
return Task
        public Task<DescribeRouteTablesResponse> DescribeRouteTablesAsync(System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            return DescribeRouteTablesAsync(new DescribeRouteTablesRequest(), cancellationToken);
        }

Same methods

AmazonEC2Client::DescribeRouteTablesAsync ( DescribeRouteTablesRequest request, System cancellationToken = default(CancellationToken) ) : Task
AmazonEC2Client