aws_sdk_pinpointsmsvoicev2/client/delete_account_default_protect_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 [`DeleteAccountDefaultProtectConfiguration`](crate::operation::delete_account_default_protect_configuration::builders::DeleteAccountDefaultProtectConfigurationFluentBuilder) operation.
4 ///
5 /// - The fluent builder takes no input, just [`send`](crate::operation::delete_account_default_protect_configuration::builders::DeleteAccountDefaultProtectConfigurationFluentBuilder::send) it.
6 /// - On success, responds with [`DeleteAccountDefaultProtectConfigurationOutput`](crate::operation::delete_account_default_protect_configuration::DeleteAccountDefaultProtectConfigurationOutput) with field(s):
7 /// - [`default_protect_configuration_arn(String)`](crate::operation::delete_account_default_protect_configuration::DeleteAccountDefaultProtectConfigurationOutput::default_protect_configuration_arn): <p>The Amazon Resource Name (ARN) of the account default protect configuration.</p>
8 /// - [`default_protect_configuration_id(String)`](crate::operation::delete_account_default_protect_configuration::DeleteAccountDefaultProtectConfigurationOutput::default_protect_configuration_id): <p>The unique identifier of the account default protect configuration.</p>
9 /// - On failure, responds with [`SdkError<DeleteAccountDefaultProtectConfigurationError>`](crate::operation::delete_account_default_protect_configuration::DeleteAccountDefaultProtectConfigurationError)
10 pub fn delete_account_default_protect_configuration(
11 &self,
12 ) -> crate::operation::delete_account_default_protect_configuration::builders::DeleteAccountDefaultProtectConfigurationFluentBuilder {
13 crate::operation::delete_account_default_protect_configuration::builders::DeleteAccountDefaultProtectConfigurationFluentBuilder::new(
14 self.handle.clone(),
15 )
16 }
17}