aws_sdk_pinpointsmsvoicev2/client/
disassociate_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 [`DisassociateProtectConfiguration`](crate::operation::disassociate_protect_configuration::builders::DisassociateProtectConfigurationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`protect_configuration_id(impl Into<String>)`](crate::operation::disassociate_protect_configuration::builders::DisassociateProtectConfigurationFluentBuilder::protect_configuration_id) / [`set_protect_configuration_id(Option<String>)`](crate::operation::disassociate_protect_configuration::builders::DisassociateProtectConfigurationFluentBuilder::set_protect_configuration_id):<br>required: **true**<br><p>The unique identifier for the protect configuration.</p><br>
7    ///   - [`configuration_set_name(impl Into<String>)`](crate::operation::disassociate_protect_configuration::builders::DisassociateProtectConfigurationFluentBuilder::configuration_set_name) / [`set_configuration_set_name(Option<String>)`](crate::operation::disassociate_protect_configuration::builders::DisassociateProtectConfigurationFluentBuilder::set_configuration_set_name):<br>required: **true**<br><p>The name of the ConfigurationSet.</p><br>
8    /// - On success, responds with [`DisassociateProtectConfigurationOutput`](crate::operation::disassociate_protect_configuration::DisassociateProtectConfigurationOutput) with field(s):
9    ///   - [`configuration_set_arn(String)`](crate::operation::disassociate_protect_configuration::DisassociateProtectConfigurationOutput::configuration_set_arn): <p>The Amazon Resource Name (ARN) of the configuration set.</p>
10    ///   - [`configuration_set_name(String)`](crate::operation::disassociate_protect_configuration::DisassociateProtectConfigurationOutput::configuration_set_name): <p>The name of the ConfigurationSet.</p>
11    ///   - [`protect_configuration_arn(String)`](crate::operation::disassociate_protect_configuration::DisassociateProtectConfigurationOutput::protect_configuration_arn): <p>The Amazon Resource Name (ARN) of the protect configuration.</p>
12    ///   - [`protect_configuration_id(String)`](crate::operation::disassociate_protect_configuration::DisassociateProtectConfigurationOutput::protect_configuration_id): <p>The unique identifier for the protect configuration.</p>
13    /// - On failure, responds with [`SdkError<DisassociateProtectConfigurationError>`](crate::operation::disassociate_protect_configuration::DisassociateProtectConfigurationError)
14    pub fn disassociate_protect_configuration(
15        &self,
16    ) -> crate::operation::disassociate_protect_configuration::builders::DisassociateProtectConfigurationFluentBuilder {
17        crate::operation::disassociate_protect_configuration::builders::DisassociateProtectConfigurationFluentBuilder::new(self.handle.clone())
18    }
19}