// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`CreateRouteTable`](crate::operation::create_route_table::builders::CreateRouteTableFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`dry_run(bool)`](crate::operation::create_route_table::builders::CreateRouteTableFluentBuilder::dry_run) / [`set_dry_run(Option<bool>)`](crate::operation::create_route_table::builders::CreateRouteTableFluentBuilder::set_dry_run):<br>required: **false**<br><p>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p><br>
/// - [`vpc_id(impl Into<String>)`](crate::operation::create_route_table::builders::CreateRouteTableFluentBuilder::vpc_id) / [`set_vpc_id(Option<String>)`](crate::operation::create_route_table::builders::CreateRouteTableFluentBuilder::set_vpc_id):<br>required: **true**<br><p>The ID of the VPC.</p><br>
/// - [`tag_specifications(TagSpecification)`](crate::operation::create_route_table::builders::CreateRouteTableFluentBuilder::tag_specifications) / [`set_tag_specifications(Option<Vec::<TagSpecification>>)`](crate::operation::create_route_table::builders::CreateRouteTableFluentBuilder::set_tag_specifications):<br>required: **false**<br><p>The tags to assign to the route table.</p><br>
/// - On success, responds with [`CreateRouteTableOutput`](crate::operation::create_route_table::CreateRouteTableOutput) with field(s):
/// - [`route_table(Option<RouteTable>)`](crate::operation::create_route_table::CreateRouteTableOutput::route_table): <p>Information about the route table.</p>
/// - On failure, responds with [`SdkError<CreateRouteTableError>`](crate::operation::create_route_table::CreateRouteTableError)
pub fn create_route_table(&self) -> crate::operation::create_route_table::builders::CreateRouteTableFluentBuilder {
crate::operation::create_route_table::builders::CreateRouteTableFluentBuilder::new(self.handle.clone())
}
}