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 [`DeleteSipRule`](crate::operation::delete_sip_rule::builders::DeleteSipRuleFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`sip_rule_id(impl Into<String>)`](crate::operation::delete_sip_rule::builders::DeleteSipRuleFluentBuilder::sip_rule_id) / [`set_sip_rule_id(Option<String>)`](crate::operation::delete_sip_rule::builders::DeleteSipRuleFluentBuilder::set_sip_rule_id): <p>The SIP rule ID.</p>
    /// - On success, responds with [`DeleteSipRuleOutput`](crate::operation::delete_sip_rule::DeleteSipRuleOutput)
    /// - On failure, responds with [`SdkError<DeleteSipRuleError>`](crate::operation::delete_sip_rule::DeleteSipRuleError)
    pub fn delete_sip_rule(
        &self,
    ) -> crate::operation::delete_sip_rule::builders::DeleteSipRuleFluentBuilder {
        crate::operation::delete_sip_rule::builders::DeleteSipRuleFluentBuilder::new(
            self.handle.clone(),
        )
    }
}