// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`UpdateAdapter`](crate::operation::update_adapter::builders::UpdateAdapterFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`adapter_id(impl Into<String>)`](crate::operation::update_adapter::builders::UpdateAdapterFluentBuilder::adapter_id) / [`set_adapter_id(Option<String>)`](crate::operation::update_adapter::builders::UpdateAdapterFluentBuilder::set_adapter_id):<br>required: **true**<br><p>A string containing a unique ID for the adapter that will be updated.</p><br>
/// - [`description(impl Into<String>)`](crate::operation::update_adapter::builders::UpdateAdapterFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::update_adapter::builders::UpdateAdapterFluentBuilder::set_description):<br>required: **false**<br><p>The new description to be applied to the adapter.</p><br>
/// - [`adapter_name(impl Into<String>)`](crate::operation::update_adapter::builders::UpdateAdapterFluentBuilder::adapter_name) / [`set_adapter_name(Option<String>)`](crate::operation::update_adapter::builders::UpdateAdapterFluentBuilder::set_adapter_name):<br>required: **false**<br><p>The new name to be applied to the adapter.</p><br>
/// - [`auto_update(AutoUpdate)`](crate::operation::update_adapter::builders::UpdateAdapterFluentBuilder::auto_update) / [`set_auto_update(Option<AutoUpdate>)`](crate::operation::update_adapter::builders::UpdateAdapterFluentBuilder::set_auto_update):<br>required: **false**<br><p>The new auto-update status to be applied to the adapter.</p><br>
/// - On success, responds with [`UpdateAdapterOutput`](crate::operation::update_adapter::UpdateAdapterOutput) with field(s):
/// - [`adapter_id(Option<String>)`](crate::operation::update_adapter::UpdateAdapterOutput::adapter_id): <p>A string containing a unique ID for the adapter that has been updated.</p>
/// - [`adapter_name(Option<String>)`](crate::operation::update_adapter::UpdateAdapterOutput::adapter_name): <p>A string containing the name of the adapter that has been updated.</p>
/// - [`creation_time(Option<DateTime>)`](crate::operation::update_adapter::UpdateAdapterOutput::creation_time): <p>An object specifying the creation time of the the adapter that has been updated.</p>
/// - [`description(Option<String>)`](crate::operation::update_adapter::UpdateAdapterOutput::description): <p>A string containing the description of the adapter that has been updated.</p>
/// - [`feature_types(Option<Vec::<FeatureType>>)`](crate::operation::update_adapter::UpdateAdapterOutput::feature_types): <p>List of the targeted feature types for the updated adapter.</p>
/// - [`auto_update(Option<AutoUpdate>)`](crate::operation::update_adapter::UpdateAdapterOutput::auto_update): <p>The auto-update status of the adapter that has been updated.</p>
/// - On failure, responds with [`SdkError<UpdateAdapterError>`](crate::operation::update_adapter::UpdateAdapterError)
pub fn update_adapter(&self) -> crate::operation::update_adapter::builders::UpdateAdapterFluentBuilder {
crate::operation::update_adapter::builders::UpdateAdapterFluentBuilder::new(self.handle.clone())
}
}