// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`UpdateComponentConfiguration`](crate::operation::update_component_configuration::builders::UpdateComponentConfigurationFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`resource_group_name(impl Into<String>)`](crate::operation::update_component_configuration::builders::UpdateComponentConfigurationFluentBuilder::resource_group_name) / [`set_resource_group_name(Option<String>)`](crate::operation::update_component_configuration::builders::UpdateComponentConfigurationFluentBuilder::set_resource_group_name):<br>required: **true**<br><p>The name of the resource group.</p><br>
/// - [`component_name(impl Into<String>)`](crate::operation::update_component_configuration::builders::UpdateComponentConfigurationFluentBuilder::component_name) / [`set_component_name(Option<String>)`](crate::operation::update_component_configuration::builders::UpdateComponentConfigurationFluentBuilder::set_component_name):<br>required: **true**<br><p>The name of the component.</p><br>
/// - [`monitor(bool)`](crate::operation::update_component_configuration::builders::UpdateComponentConfigurationFluentBuilder::monitor) / [`set_monitor(Option<bool>)`](crate::operation::update_component_configuration::builders::UpdateComponentConfigurationFluentBuilder::set_monitor):<br>required: **false**<br><p>Indicates whether the application component is monitored.</p><br>
/// - [`tier(Tier)`](crate::operation::update_component_configuration::builders::UpdateComponentConfigurationFluentBuilder::tier) / [`set_tier(Option<Tier>)`](crate::operation::update_component_configuration::builders::UpdateComponentConfigurationFluentBuilder::set_tier):<br>required: **false**<br><p>The tier of the application component.</p><br>
/// - [`component_configuration(impl Into<String>)`](crate::operation::update_component_configuration::builders::UpdateComponentConfigurationFluentBuilder::component_configuration) / [`set_component_configuration(Option<String>)`](crate::operation::update_component_configuration::builders::UpdateComponentConfigurationFluentBuilder::set_component_configuration):<br>required: **false**<br><p>The configuration settings of the component. The value is the escaped JSON of the configuration. For more information about the JSON format, see <a href="https://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/working-with-json.html">Working with JSON</a>. You can send a request to <code>DescribeComponentConfigurationRecommendation</code> to see the recommended configuration for a component. For the complete format of the component configuration file, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/component-config.html">Component Configuration</a>.</p><br>
/// - [`auto_config_enabled(bool)`](crate::operation::update_component_configuration::builders::UpdateComponentConfigurationFluentBuilder::auto_config_enabled) / [`set_auto_config_enabled(Option<bool>)`](crate::operation::update_component_configuration::builders::UpdateComponentConfigurationFluentBuilder::set_auto_config_enabled):<br>required: **false**<br><p>Automatically configures the component by applying the recommended configurations.</p><br>
/// - On success, responds with [`UpdateComponentConfigurationOutput`](crate::operation::update_component_configuration::UpdateComponentConfigurationOutput)
/// - On failure, responds with [`SdkError<UpdateComponentConfigurationError>`](crate::operation::update_component_configuration::UpdateComponentConfigurationError)
pub fn update_component_configuration(
&self,
) -> crate::operation::update_component_configuration::builders::UpdateComponentConfigurationFluentBuilder {
crate::operation::update_component_configuration::builders::UpdateComponentConfigurationFluentBuilder::new(self.handle.clone())
}
}