// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`UpdateAgentRuntimeEndpoint`](crate::operation::update_agent_runtime_endpoint::builders::UpdateAgentRuntimeEndpointFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`agent_runtime_id(impl Into<String>)`](crate::operation::update_agent_runtime_endpoint::builders::UpdateAgentRuntimeEndpointFluentBuilder::agent_runtime_id) / [`set_agent_runtime_id(Option<String>)`](crate::operation::update_agent_runtime_endpoint::builders::UpdateAgentRuntimeEndpointFluentBuilder::set_agent_runtime_id):<br>required: **true**<br><p>The unique identifier of the AgentCore Runtime associated with the endpoint.</p><br>
/// - [`endpoint_name(impl Into<String>)`](crate::operation::update_agent_runtime_endpoint::builders::UpdateAgentRuntimeEndpointFluentBuilder::endpoint_name) / [`set_endpoint_name(Option<String>)`](crate::operation::update_agent_runtime_endpoint::builders::UpdateAgentRuntimeEndpointFluentBuilder::set_endpoint_name):<br>required: **true**<br><p>The name of the AgentCore Runtime endpoint to update.</p><br>
/// - [`agent_runtime_version(impl Into<String>)`](crate::operation::update_agent_runtime_endpoint::builders::UpdateAgentRuntimeEndpointFluentBuilder::agent_runtime_version) / [`set_agent_runtime_version(Option<String>)`](crate::operation::update_agent_runtime_endpoint::builders::UpdateAgentRuntimeEndpointFluentBuilder::set_agent_runtime_version):<br>required: **false**<br><p>The updated version of the AgentCore Runtime for the endpoint.</p><br>
/// - [`description(impl Into<String>)`](crate::operation::update_agent_runtime_endpoint::builders::UpdateAgentRuntimeEndpointFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::update_agent_runtime_endpoint::builders::UpdateAgentRuntimeEndpointFluentBuilder::set_description):<br>required: **false**<br><p>The updated description of the AgentCore Runtime endpoint.</p><br>
/// - [`client_token(impl Into<String>)`](crate::operation::update_agent_runtime_endpoint::builders::UpdateAgentRuntimeEndpointFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::update_agent_runtime_endpoint::builders::UpdateAgentRuntimeEndpointFluentBuilder::set_client_token):<br>required: **false**<br><p>A unique, case-sensitive identifier to ensure idempotency of the request.</p><br>
/// - On success, responds with [`UpdateAgentRuntimeEndpointOutput`](crate::operation::update_agent_runtime_endpoint::UpdateAgentRuntimeEndpointOutput) with field(s):
/// - [`live_version(Option<String>)`](crate::operation::update_agent_runtime_endpoint::UpdateAgentRuntimeEndpointOutput::live_version): <p>The currently deployed version of the AgentCore Runtime on the endpoint.</p>
/// - [`target_version(Option<String>)`](crate::operation::update_agent_runtime_endpoint::UpdateAgentRuntimeEndpointOutput::target_version): <p>The target version of the AgentCore Runtime for the endpoint.</p>
/// - [`agent_runtime_endpoint_arn(String)`](crate::operation::update_agent_runtime_endpoint::UpdateAgentRuntimeEndpointOutput::agent_runtime_endpoint_arn): <p>The Amazon Resource Name (ARN) of the AgentCore Runtime endpoint.</p>
/// - [`agent_runtime_arn(String)`](crate::operation::update_agent_runtime_endpoint::UpdateAgentRuntimeEndpointOutput::agent_runtime_arn): <p>The Amazon Resource Name (ARN) of the AgentCore Runtime.</p>
/// - [`status(AgentRuntimeEndpointStatus)`](crate::operation::update_agent_runtime_endpoint::UpdateAgentRuntimeEndpointOutput::status): <p>The current status of the updated AgentCore Runtime endpoint.</p>
/// - [`created_at(DateTime)`](crate::operation::update_agent_runtime_endpoint::UpdateAgentRuntimeEndpointOutput::created_at): <p>The timestamp when the AgentCore Runtime endpoint was created.</p>
/// - [`last_updated_at(DateTime)`](crate::operation::update_agent_runtime_endpoint::UpdateAgentRuntimeEndpointOutput::last_updated_at): <p>The timestamp when the AgentCore Runtime endpoint was last updated.</p>
/// - On failure, responds with [`SdkError<UpdateAgentRuntimeEndpointError>`](crate::operation::update_agent_runtime_endpoint::UpdateAgentRuntimeEndpointError)
pub fn update_agent_runtime_endpoint(
&self,
) -> crate::operation::update_agent_runtime_endpoint::builders::UpdateAgentRuntimeEndpointFluentBuilder {
crate::operation::update_agent_runtime_endpoint::builders::UpdateAgentRuntimeEndpointFluentBuilder::new(self.handle.clone())
}
}