1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeletePerformanceAnalysisReport`](crate::operation::delete_performance_analysis_report::builders::DeletePerformanceAnalysisReportFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`service_type(ServiceType)`](crate::operation::delete_performance_analysis_report::builders::DeletePerformanceAnalysisReportFluentBuilder::service_type) / [`set_service_type(Option<ServiceType>)`](crate::operation::delete_performance_analysis_report::builders::DeletePerformanceAnalysisReportFluentBuilder::set_service_type):<br>required: **true**<br><p>The Amazon Web Services service for which Performance Insights will return metrics. Valid value is <code>RDS</code>.</p><br>
    ///   - [`identifier(impl Into<String>)`](crate::operation::delete_performance_analysis_report::builders::DeletePerformanceAnalysisReportFluentBuilder::identifier) / [`set_identifier(Option<String>)`](crate::operation::delete_performance_analysis_report::builders::DeletePerformanceAnalysisReportFluentBuilder::set_identifier):<br>required: **true**<br><p>An immutable identifier for a data source that is unique for an Amazon Web Services Region. Performance Insights gathers metrics from this data source. In the console, the identifier is shown as <i>ResourceID</i>. When you call <code>DescribeDBInstances</code>, the identifier is returned as <code>DbiResourceId</code>.</p> <p>To use a DB instance as a data source, specify its <code>DbiResourceId</code> value. For example, specify <code>db-ABCDEFGHIJKLMNOPQRSTU1VW2X</code>.</p><br>
    ///   - [`analysis_report_id(impl Into<String>)`](crate::operation::delete_performance_analysis_report::builders::DeletePerformanceAnalysisReportFluentBuilder::analysis_report_id) / [`set_analysis_report_id(Option<String>)`](crate::operation::delete_performance_analysis_report::builders::DeletePerformanceAnalysisReportFluentBuilder::set_analysis_report_id):<br>required: **true**<br><p>The unique identifier of the analysis report for deletion.</p><br>
    /// - On success, responds with [`DeletePerformanceAnalysisReportOutput`](crate::operation::delete_performance_analysis_report::DeletePerformanceAnalysisReportOutput)
    /// - On failure, responds with [`SdkError<DeletePerformanceAnalysisReportError>`](crate::operation::delete_performance_analysis_report::DeletePerformanceAnalysisReportError)
    pub fn delete_performance_analysis_report(
        &self,
    ) -> crate::operation::delete_performance_analysis_report::builders::DeletePerformanceAnalysisReportFluentBuilder {
        crate::operation::delete_performance_analysis_report::builders::DeletePerformanceAnalysisReportFluentBuilder::new(self.handle.clone())
    }
}