aws-sdk-route53 0.25.1

AWS SDK for Amazon Route 53
Documentation
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 [`GetHealthCheckCount`](crate::operation::get_health_check_count::builders::GetHealthCheckCountFluentBuilder) operation.
    ///
    /// - The fluent builder takes no input, just [`send`](crate::operation::get_health_check_count::builders::GetHealthCheckCountFluentBuilder::send) it.
    /// - On success, responds with [`GetHealthCheckCountOutput`](crate::operation::get_health_check_count::GetHealthCheckCountOutput) with field(s):
    ///   - [`health_check_count(Option<i64>)`](crate::operation::get_health_check_count::GetHealthCheckCountOutput::health_check_count): <p>The number of health checks associated with the current Amazon Web Services account.</p>
    /// - On failure, responds with [`SdkError<GetHealthCheckCountError>`](crate::operation::get_health_check_count::GetHealthCheckCountError)
    pub fn get_health_check_count(
        &self,
    ) -> crate::operation::get_health_check_count::builders::GetHealthCheckCountFluentBuilder {
        crate::operation::get_health_check_count::builders::GetHealthCheckCountFluentBuilder::new(
            self.handle.clone(),
        )
    }
}