// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DeleteRoute`](crate::operation::delete_route::builders::DeleteRouteFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`destination_cidr_block(impl Into<String>)`](crate::operation::delete_route::builders::DeleteRouteFluentBuilder::destination_cidr_block) / [`set_destination_cidr_block(Option<String>)`](crate::operation::delete_route::builders::DeleteRouteFluentBuilder::set_destination_cidr_block):<br>required: **false**<br><p>The IPv4 CIDR range for the route. The value you specify must match the CIDR for the route exactly.</p><br>
/// - [`destination_ipv6_cidr_block(impl Into<String>)`](crate::operation::delete_route::builders::DeleteRouteFluentBuilder::destination_ipv6_cidr_block) / [`set_destination_ipv6_cidr_block(Option<String>)`](crate::operation::delete_route::builders::DeleteRouteFluentBuilder::set_destination_ipv6_cidr_block):<br>required: **false**<br><p>The IPv6 CIDR range for the route. The value you specify must match the CIDR for the route exactly.</p><br>
/// - [`destination_prefix_list_id(impl Into<String>)`](crate::operation::delete_route::builders::DeleteRouteFluentBuilder::destination_prefix_list_id) / [`set_destination_prefix_list_id(Option<String>)`](crate::operation::delete_route::builders::DeleteRouteFluentBuilder::set_destination_prefix_list_id):<br>required: **false**<br><p>The ID of the prefix list for the route.</p><br>
/// - [`dry_run(bool)`](crate::operation::delete_route::builders::DeleteRouteFluentBuilder::dry_run) / [`set_dry_run(Option<bool>)`](crate::operation::delete_route::builders::DeleteRouteFluentBuilder::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>
/// - [`route_table_id(impl Into<String>)`](crate::operation::delete_route::builders::DeleteRouteFluentBuilder::route_table_id) / [`set_route_table_id(Option<String>)`](crate::operation::delete_route::builders::DeleteRouteFluentBuilder::set_route_table_id):<br>required: **true**<br><p>The ID of the route table.</p><br>
/// - On success, responds with [`DeleteRouteOutput`](crate::operation::delete_route::DeleteRouteOutput)
/// - On failure, responds with [`SdkError<DeleteRouteError>`](crate::operation::delete_route::DeleteRouteError)
pub fn delete_route(&self) -> crate::operation::delete_route::builders::DeleteRouteFluentBuilder {
crate::operation::delete_route::builders::DeleteRouteFluentBuilder::new(self.handle.clone())
}
}