1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`CreateLocalGatewayRouteTable`](crate::operation::create_local_gateway_route_table::builders::CreateLocalGatewayRouteTableFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`local_gateway_id(impl Into<String>)`](crate::operation::create_local_gateway_route_table::builders::CreateLocalGatewayRouteTableFluentBuilder::local_gateway_id) / [`set_local_gateway_id(Option<String>)`](crate::operation::create_local_gateway_route_table::builders::CreateLocalGatewayRouteTableFluentBuilder::set_local_gateway_id):<br>required: **true**<br><p>The ID of the local gateway.</p><br>
    ///   - [`mode(LocalGatewayRouteTableMode)`](crate::operation::create_local_gateway_route_table::builders::CreateLocalGatewayRouteTableFluentBuilder::mode) / [`set_mode(Option<LocalGatewayRouteTableMode>)`](crate::operation::create_local_gateway_route_table::builders::CreateLocalGatewayRouteTableFluentBuilder::set_mode):<br>required: **false**<br><p>The mode of the local gateway route table.</p><br>
    ///   - [`tag_specifications(TagSpecification)`](crate::operation::create_local_gateway_route_table::builders::CreateLocalGatewayRouteTableFluentBuilder::tag_specifications) / [`set_tag_specifications(Option<Vec::<TagSpecification>>)`](crate::operation::create_local_gateway_route_table::builders::CreateLocalGatewayRouteTableFluentBuilder::set_tag_specifications):<br>required: **false**<br><p>The tags assigned to the local gateway route table.</p><br>
    ///   - [`dry_run(bool)`](crate::operation::create_local_gateway_route_table::builders::CreateLocalGatewayRouteTableFluentBuilder::dry_run) / [`set_dry_run(Option<bool>)`](crate::operation::create_local_gateway_route_table::builders::CreateLocalGatewayRouteTableFluentBuilder::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>
    /// - On success, responds with [`CreateLocalGatewayRouteTableOutput`](crate::operation::create_local_gateway_route_table::CreateLocalGatewayRouteTableOutput) with field(s):
    ///   - [`local_gateway_route_table(Option<LocalGatewayRouteTable>)`](crate::operation::create_local_gateway_route_table::CreateLocalGatewayRouteTableOutput::local_gateway_route_table): <p>Information about the local gateway route table.</p>
    /// - On failure, responds with [`SdkError<CreateLocalGatewayRouteTableError>`](crate::operation::create_local_gateway_route_table::CreateLocalGatewayRouteTableError)
    pub fn create_local_gateway_route_table(
        &self,
    ) -> crate::operation::create_local_gateway_route_table::builders::CreateLocalGatewayRouteTableFluentBuilder {
        crate::operation::create_local_gateway_route_table::builders::CreateLocalGatewayRouteTableFluentBuilder::new(self.handle.clone())
    }
}