// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`UpdateAssociation`](crate::operation::update_association::builders::UpdateAssociationFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`agent_space_id(impl Into<String>)`](crate::operation::update_association::builders::UpdateAssociationFluentBuilder::agent_space_id) / [`set_agent_space_id(Option<String>)`](crate::operation::update_association::builders::UpdateAssociationFluentBuilder::set_agent_space_id):<br>required: **true**<br>The unique identifier of the AgentSpace<br>
/// - [`association_id(impl Into<String>)`](crate::operation::update_association::builders::UpdateAssociationFluentBuilder::association_id) / [`set_association_id(Option<String>)`](crate::operation::update_association::builders::UpdateAssociationFluentBuilder::set_association_id):<br>required: **true**<br>The unique identifier of the given association.<br>
/// - [`configuration(ServiceConfiguration)`](crate::operation::update_association::builders::UpdateAssociationFluentBuilder::configuration) / [`set_configuration(Option<ServiceConfiguration>)`](crate::operation::update_association::builders::UpdateAssociationFluentBuilder::set_configuration):<br>required: **true**<br>The configuration that directs how AgentSpace interacts with the given service. The entire configuration is replaced on update.<br>
/// - On success, responds with [`UpdateAssociationOutput`](crate::operation::update_association::UpdateAssociationOutput) with field(s):
/// - [`association(Option<Association>)`](crate::operation::update_association::UpdateAssociationOutput::association): Represents a service association within an AgentSpace, defining how the agent interacts with external services.
/// - [`webhook(Option<GenericWebhook>)`](crate::operation::update_association::UpdateAssociationOutput::webhook): Generic webhook configuration
/// - On failure, responds with [`SdkError<UpdateAssociationError>`](crate::operation::update_association::UpdateAssociationError)
pub fn update_association(&self) -> crate::operation::update_association::builders::UpdateAssociationFluentBuilder {
crate::operation::update_association::builders::UpdateAssociationFluentBuilder::new(self.handle.clone())
}
}