aws_sdk_config/client/
delete_pending_aggregation_request.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeletePendingAggregationRequest`](crate::operation::delete_pending_aggregation_request::builders::DeletePendingAggregationRequestFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`requester_account_id(impl Into<String>)`](crate::operation::delete_pending_aggregation_request::builders::DeletePendingAggregationRequestFluentBuilder::requester_account_id) / [`set_requester_account_id(Option<String>)`](crate::operation::delete_pending_aggregation_request::builders::DeletePendingAggregationRequestFluentBuilder::set_requester_account_id):<br>required: **true**<br><p>The 12-digit account ID of the account requesting to aggregate data.</p><br>
    ///   - [`requester_aws_region(impl Into<String>)`](crate::operation::delete_pending_aggregation_request::builders::DeletePendingAggregationRequestFluentBuilder::requester_aws_region) / [`set_requester_aws_region(Option<String>)`](crate::operation::delete_pending_aggregation_request::builders::DeletePendingAggregationRequestFluentBuilder::set_requester_aws_region):<br>required: **true**<br><p>The region requesting to aggregate data.</p><br>
    /// - On success, responds with [`DeletePendingAggregationRequestOutput`](crate::operation::delete_pending_aggregation_request::DeletePendingAggregationRequestOutput)
    /// - On failure, responds with [`SdkError<DeletePendingAggregationRequestError>`](crate::operation::delete_pending_aggregation_request::DeletePendingAggregationRequestError)
    pub fn delete_pending_aggregation_request(
        &self,
    ) -> crate::operation::delete_pending_aggregation_request::builders::DeletePendingAggregationRequestFluentBuilder {
        crate::operation::delete_pending_aggregation_request::builders::DeletePendingAggregationRequestFluentBuilder::new(self.handle.clone())
    }
}