aws_sdk_applicationinsights/client/describe_component_configuration_recommendation.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeComponentConfigurationRecommendation`](crate::operation::describe_component_configuration_recommendation::builders::DescribeComponentConfigurationRecommendationFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`resource_group_name(impl Into<String>)`](crate::operation::describe_component_configuration_recommendation::builders::DescribeComponentConfigurationRecommendationFluentBuilder::resource_group_name) / [`set_resource_group_name(Option<String>)`](crate::operation::describe_component_configuration_recommendation::builders::DescribeComponentConfigurationRecommendationFluentBuilder::set_resource_group_name):<br>required: **true**<br><p>The name of the resource group.</p><br>
/// - [`component_name(impl Into<String>)`](crate::operation::describe_component_configuration_recommendation::builders::DescribeComponentConfigurationRecommendationFluentBuilder::component_name) / [`set_component_name(Option<String>)`](crate::operation::describe_component_configuration_recommendation::builders::DescribeComponentConfigurationRecommendationFluentBuilder::set_component_name):<br>required: **true**<br><p>The name of the component.</p><br>
/// - [`tier(Tier)`](crate::operation::describe_component_configuration_recommendation::builders::DescribeComponentConfigurationRecommendationFluentBuilder::tier) / [`set_tier(Option<Tier>)`](crate::operation::describe_component_configuration_recommendation::builders::DescribeComponentConfigurationRecommendationFluentBuilder::set_tier):<br>required: **true**<br><p>The tier of the application component.</p><br>
/// - [`workload_name(impl Into<String>)`](crate::operation::describe_component_configuration_recommendation::builders::DescribeComponentConfigurationRecommendationFluentBuilder::workload_name) / [`set_workload_name(Option<String>)`](crate::operation::describe_component_configuration_recommendation::builders::DescribeComponentConfigurationRecommendationFluentBuilder::set_workload_name):<br>required: **false**<br><p>The name of the workload.</p><br>
/// - [`recommendation_type(RecommendationType)`](crate::operation::describe_component_configuration_recommendation::builders::DescribeComponentConfigurationRecommendationFluentBuilder::recommendation_type) / [`set_recommendation_type(Option<RecommendationType>)`](crate::operation::describe_component_configuration_recommendation::builders::DescribeComponentConfigurationRecommendationFluentBuilder::set_recommendation_type):<br>required: **false**<br><p>The recommended configuration type.</p><br>
/// - On success, responds with [`DescribeComponentConfigurationRecommendationOutput`](crate::operation::describe_component_configuration_recommendation::DescribeComponentConfigurationRecommendationOutput) with field(s):
/// - [`component_configuration(Option<String>)`](crate::operation::describe_component_configuration_recommendation::DescribeComponentConfigurationRecommendationOutput::component_configuration): <p>The recommended configuration settings of the component. The value is the escaped JSON of the configuration.</p>
/// - On failure, responds with [`SdkError<DescribeComponentConfigurationRecommendationError>`](crate::operation::describe_component_configuration_recommendation::DescribeComponentConfigurationRecommendationError)
pub fn describe_component_configuration_recommendation(
&self,
) -> crate::operation::describe_component_configuration_recommendation::builders::DescribeComponentConfigurationRecommendationFluentBuilder {
crate::operation::describe_component_configuration_recommendation::builders::DescribeComponentConfigurationRecommendationFluentBuilder::new(
self.handle.clone(),
)
}
}