// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`UpdateLinkModuleFlow`](crate::operation::update_link_module_flow::builders::UpdateLinkModuleFlowFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`client_token(impl Into<String>)`](crate::operation::update_link_module_flow::builders::UpdateLinkModuleFlowFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::update_link_module_flow::builders::UpdateLinkModuleFlowFluentBuilder::set_client_token):<br>required: **true**<br><p>Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a <a href="https://wikipedia.org/wiki/Universally_unique_identifier">UUID type of value</a>.</p> <p>If you don't provide this value, then Amazon Web Services generates a random one for you.</p> <p>If you retry the operation with the same <code>clientToken</code>, but with different parameters, the retry fails with an <code>IdempotentParameterMismatch</code> error.</p><br>
/// - [`gateway_id(impl Into<String>)`](crate::operation::update_link_module_flow::builders::UpdateLinkModuleFlowFluentBuilder::gateway_id) / [`set_gateway_id(Option<String>)`](crate::operation::update_link_module_flow::builders::UpdateLinkModuleFlowFluentBuilder::set_gateway_id):<br>required: **true**<br><p>The unique identifier of the gateway.</p><br>
/// - [`link_id(impl Into<String>)`](crate::operation::update_link_module_flow::builders::UpdateLinkModuleFlowFluentBuilder::link_id) / [`set_link_id(Option<String>)`](crate::operation::update_link_module_flow::builders::UpdateLinkModuleFlowFluentBuilder::set_link_id):<br>required: **true**<br><p>The unique identifier of the link.</p><br>
/// - [`modules(ModuleConfiguration)`](crate::operation::update_link_module_flow::builders::UpdateLinkModuleFlowFluentBuilder::modules) / [`set_modules(Option<Vec::<ModuleConfiguration>>)`](crate::operation::update_link_module_flow::builders::UpdateLinkModuleFlowFluentBuilder::set_modules):<br>required: **true**<br><p>The configuration of a module.</p><br>
/// - On success, responds with [`UpdateLinkModuleFlowOutput`](crate::operation::update_link_module_flow::UpdateLinkModuleFlowOutput) with field(s):
/// - [`gateway_id(String)`](crate::operation::update_link_module_flow::UpdateLinkModuleFlowOutput::gateway_id): <p>The unique identifier of the gateway.</p>
/// - [`link_id(String)`](crate::operation::update_link_module_flow::UpdateLinkModuleFlowOutput::link_id): <p>The unique identifier of the link.</p>
/// - [`status(LinkStatus)`](crate::operation::update_link_module_flow::UpdateLinkModuleFlowOutput::status): <p>The status of the request.</p>
/// - On failure, responds with [`SdkError<UpdateLinkModuleFlowError>`](crate::operation::update_link_module_flow::UpdateLinkModuleFlowError)
pub fn update_link_module_flow(&self) -> crate::operation::update_link_module_flow::builders::UpdateLinkModuleFlowFluentBuilder {
crate::operation::update_link_module_flow::builders::UpdateLinkModuleFlowFluentBuilder::new(self.handle.clone())
}
}