aws_sdk_applicationinsights/client/
describe_component_configuration.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`DescribeComponentConfiguration`](crate::operation::describe_component_configuration::builders::DescribeComponentConfigurationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`resource_group_name(impl Into<String>)`](crate::operation::describe_component_configuration::builders::DescribeComponentConfigurationFluentBuilder::resource_group_name) / [`set_resource_group_name(Option<String>)`](crate::operation::describe_component_configuration::builders::DescribeComponentConfigurationFluentBuilder::set_resource_group_name):<br>required: **true**<br><p>The name of the resource group.</p><br>
7    ///   - [`component_name(impl Into<String>)`](crate::operation::describe_component_configuration::builders::DescribeComponentConfigurationFluentBuilder::component_name) / [`set_component_name(Option<String>)`](crate::operation::describe_component_configuration::builders::DescribeComponentConfigurationFluentBuilder::set_component_name):<br>required: **true**<br><p>The name of the component.</p><br>
8    ///   - [`account_id(impl Into<String>)`](crate::operation::describe_component_configuration::builders::DescribeComponentConfigurationFluentBuilder::account_id) / [`set_account_id(Option<String>)`](crate::operation::describe_component_configuration::builders::DescribeComponentConfigurationFluentBuilder::set_account_id):<br>required: **false**<br><p>The Amazon Web Services account ID for the resource group owner.</p><br>
9    /// - On success, responds with [`DescribeComponentConfigurationOutput`](crate::operation::describe_component_configuration::DescribeComponentConfigurationOutput) with field(s):
10    ///   - [`monitor(Option<bool>)`](crate::operation::describe_component_configuration::DescribeComponentConfigurationOutput::monitor): <p>Indicates whether the application component is monitored.</p>
11    ///   - [`tier(Option<Tier>)`](crate::operation::describe_component_configuration::DescribeComponentConfigurationOutput::tier): <p>The tier of the application component. Supported tiers include <code>DOT_NET_CORE</code>, <code>DOT_NET_WORKER</code>, <code>DOT_NET_WEB</code>, <code>SQL_SERVER</code>, and <code>DEFAULT</code></p>
12    ///   - [`component_configuration(Option<String>)`](crate::operation::describe_component_configuration::DescribeComponentConfigurationOutput::component_configuration): <p>The configuration settings of the component. The value is the escaped JSON of the configuration.</p>
13    /// - On failure, responds with [`SdkError<DescribeComponentConfigurationError>`](crate::operation::describe_component_configuration::DescribeComponentConfigurationError)
14    pub fn describe_component_configuration(
15        &self,
16    ) -> crate::operation::describe_component_configuration::builders::DescribeComponentConfigurationFluentBuilder {
17        crate::operation::describe_component_configuration::builders::DescribeComponentConfigurationFluentBuilder::new(self.handle.clone())
18    }
19}