// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ModifyTransitGatewayPolicyTableEntry`](crate::operation::modify_transit_gateway_policy_table_entry::builders::ModifyTransitGatewayPolicyTableEntryFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`transit_gateway_policy_table_id(impl Into<String>)`](crate::operation::modify_transit_gateway_policy_table_entry::builders::ModifyTransitGatewayPolicyTableEntryFluentBuilder::transit_gateway_policy_table_id) / [`set_transit_gateway_policy_table_id(Option<String>)`](crate::operation::modify_transit_gateway_policy_table_entry::builders::ModifyTransitGatewayPolicyTableEntryFluentBuilder::set_transit_gateway_policy_table_id):<br>required: **true**<br><p>The ID of the transit gateway policy table.</p><br>
/// - [`policy_rule_number(impl Into<String>)`](crate::operation::modify_transit_gateway_policy_table_entry::builders::ModifyTransitGatewayPolicyTableEntryFluentBuilder::policy_rule_number) / [`set_policy_rule_number(Option<String>)`](crate::operation::modify_transit_gateway_policy_table_entry::builders::ModifyTransitGatewayPolicyTableEntryFluentBuilder::set_policy_rule_number):<br>required: **true**<br><p>The rule number of the policy table entry to modify.</p><br>
/// - [`policy_rule(TransitGatewayRequestPolicyRule)`](crate::operation::modify_transit_gateway_policy_table_entry::builders::ModifyTransitGatewayPolicyTableEntryFluentBuilder::policy_rule) / [`set_policy_rule(Option<TransitGatewayRequestPolicyRule>)`](crate::operation::modify_transit_gateway_policy_table_entry::builders::ModifyTransitGatewayPolicyTableEntryFluentBuilder::set_policy_rule):<br>required: **false**<br><p>The updated matching criteria for the policy table entry. Unspecified fields retain their current values.</p><br>
/// - [`target_route_table_id(impl Into<String>)`](crate::operation::modify_transit_gateway_policy_table_entry::builders::ModifyTransitGatewayPolicyTableEntryFluentBuilder::target_route_table_id) / [`set_target_route_table_id(Option<String>)`](crate::operation::modify_transit_gateway_policy_table_entry::builders::ModifyTransitGatewayPolicyTableEntryFluentBuilder::set_target_route_table_id):<br>required: **false**<br><p>The ID of the transit gateway route table to use for traffic matching this rule.</p><br>
/// - [`dry_run(bool)`](crate::operation::modify_transit_gateway_policy_table_entry::builders::ModifyTransitGatewayPolicyTableEntryFluentBuilder::dry_run) / [`set_dry_run(Option<bool>)`](crate::operation::modify_transit_gateway_policy_table_entry::builders::ModifyTransitGatewayPolicyTableEntryFluentBuilder::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 [`ModifyTransitGatewayPolicyTableEntryOutput`](crate::operation::modify_transit_gateway_policy_table_entry::ModifyTransitGatewayPolicyTableEntryOutput) with field(s):
/// - [`transit_gateway_policy_table_entry(Option<TransitGatewayPolicyTableEntry>)`](crate::operation::modify_transit_gateway_policy_table_entry::ModifyTransitGatewayPolicyTableEntryOutput::transit_gateway_policy_table_entry): <p>Describes a transit gateway policy table entry</p>
/// - On failure, responds with [`SdkError<ModifyTransitGatewayPolicyTableEntryError>`](crate::operation::modify_transit_gateway_policy_table_entry::ModifyTransitGatewayPolicyTableEntryError)
pub fn modify_transit_gateway_policy_table_entry(
&self,
) -> crate::operation::modify_transit_gateway_policy_table_entry::builders::ModifyTransitGatewayPolicyTableEntryFluentBuilder {
crate::operation::modify_transit_gateway_policy_table_entry::builders::ModifyTransitGatewayPolicyTableEntryFluentBuilder::new(
self.handle.clone(),
)
}
}