1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteHypervisor`](crate::operation::delete_hypervisor::builders::DeleteHypervisorFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`hypervisor_arn(impl Into<String>)`](crate::operation::delete_hypervisor::builders::DeleteHypervisorFluentBuilder::hypervisor_arn) / [`set_hypervisor_arn(Option<String>)`](crate::operation::delete_hypervisor::builders::DeleteHypervisorFluentBuilder::set_hypervisor_arn): <p>The Amazon Resource Name (ARN) of the hypervisor to delete.</p>
    /// - On success, responds with [`DeleteHypervisorOutput`](crate::operation::delete_hypervisor::DeleteHypervisorOutput) with field(s):
    ///   - [`hypervisor_arn(Option<String>)`](crate::operation::delete_hypervisor::DeleteHypervisorOutput::hypervisor_arn): <p>The Amazon Resource Name (ARN) of the hypervisor you deleted.</p>
    /// - On failure, responds with [`SdkError<DeleteHypervisorError>`](crate::operation::delete_hypervisor::DeleteHypervisorError)
    pub fn delete_hypervisor(
        &self,
    ) -> crate::operation::delete_hypervisor::builders::DeleteHypervisorFluentBuilder {
        crate::operation::delete_hypervisor::builders::DeleteHypervisorFluentBuilder::new(
            self.handle.clone(),
        )
    }
}