aws_sdk_config/client/delete_aggregation_authorization.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 [`DeleteAggregationAuthorization`](crate::operation::delete_aggregation_authorization::builders::DeleteAggregationAuthorizationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`authorized_account_id(impl Into<String>)`](crate::operation::delete_aggregation_authorization::builders::DeleteAggregationAuthorizationFluentBuilder::authorized_account_id) / [`set_authorized_account_id(Option<String>)`](crate::operation::delete_aggregation_authorization::builders::DeleteAggregationAuthorizationFluentBuilder::set_authorized_account_id):<br>required: **true**<br><p>The 12-digit account ID of the account authorized to aggregate data.</p><br>
7 /// - [`authorized_aws_region(impl Into<String>)`](crate::operation::delete_aggregation_authorization::builders::DeleteAggregationAuthorizationFluentBuilder::authorized_aws_region) / [`set_authorized_aws_region(Option<String>)`](crate::operation::delete_aggregation_authorization::builders::DeleteAggregationAuthorizationFluentBuilder::set_authorized_aws_region):<br>required: **true**<br><p>The region authorized to collect aggregated data.</p><br>
8 /// - On success, responds with [`DeleteAggregationAuthorizationOutput`](crate::operation::delete_aggregation_authorization::DeleteAggregationAuthorizationOutput)
9 /// - On failure, responds with [`SdkError<DeleteAggregationAuthorizationError>`](crate::operation::delete_aggregation_authorization::DeleteAggregationAuthorizationError)
10 pub fn delete_aggregation_authorization(
11 &self,
12 ) -> crate::operation::delete_aggregation_authorization::builders::DeleteAggregationAuthorizationFluentBuilder {
13 crate::operation::delete_aggregation_authorization::builders::DeleteAggregationAuthorizationFluentBuilder::new(self.handle.clone())
14 }
15}