1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DisassociateHealthCheck`](crate::operation::disassociate_health_check::builders::DisassociateHealthCheckFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`protection_id(impl Into<String>)`](crate::operation::disassociate_health_check::builders::DisassociateHealthCheckFluentBuilder::protection_id) / [`set_protection_id(Option<String>)`](crate::operation::disassociate_health_check::builders::DisassociateHealthCheckFluentBuilder::set_protection_id):<br>required: **true**<br><p>The unique identifier (ID) for the <code>Protection</code> object to remove the health check association from.</p><br>
    ///   - [`health_check_arn(impl Into<String>)`](crate::operation::disassociate_health_check::builders::DisassociateHealthCheckFluentBuilder::health_check_arn) / [`set_health_check_arn(Option<String>)`](crate::operation::disassociate_health_check::builders::DisassociateHealthCheckFluentBuilder::set_health_check_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the health check that is associated with the protection.</p><br>
    /// - On success, responds with [`DisassociateHealthCheckOutput`](crate::operation::disassociate_health_check::DisassociateHealthCheckOutput)
    /// - On failure, responds with [`SdkError<DisassociateHealthCheckError>`](crate::operation::disassociate_health_check::DisassociateHealthCheckError)
    pub fn disassociate_health_check(&self) -> crate::operation::disassociate_health_check::builders::DisassociateHealthCheckFluentBuilder {
        crate::operation::disassociate_health_check::builders::DisassociateHealthCheckFluentBuilder::new(self.handle.clone())
    }
}