aws_sdk_backupgateway/client/
test_hypervisor_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 [`TestHypervisorConfiguration`](crate::operation::test_hypervisor_configuration::builders::TestHypervisorConfigurationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`gateway_arn(impl Into<String>)`](crate::operation::test_hypervisor_configuration::builders::TestHypervisorConfigurationFluentBuilder::gateway_arn) / [`set_gateway_arn(Option<String>)`](crate::operation::test_hypervisor_configuration::builders::TestHypervisorConfigurationFluentBuilder::set_gateway_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the gateway to the hypervisor to test.</p><br>
7    ///   - [`host(impl Into<String>)`](crate::operation::test_hypervisor_configuration::builders::TestHypervisorConfigurationFluentBuilder::host) / [`set_host(Option<String>)`](crate::operation::test_hypervisor_configuration::builders::TestHypervisorConfigurationFluentBuilder::set_host):<br>required: **true**<br><p>The server host of the hypervisor. This can be either an IP address or a fully-qualified domain name (FQDN).</p><br>
8    ///   - [`username(impl Into<String>)`](crate::operation::test_hypervisor_configuration::builders::TestHypervisorConfigurationFluentBuilder::username) / [`set_username(Option<String>)`](crate::operation::test_hypervisor_configuration::builders::TestHypervisorConfigurationFluentBuilder::set_username):<br>required: **false**<br><p>The username for the hypervisor.</p><br>
9    ///   - [`password(impl Into<String>)`](crate::operation::test_hypervisor_configuration::builders::TestHypervisorConfigurationFluentBuilder::password) / [`set_password(Option<String>)`](crate::operation::test_hypervisor_configuration::builders::TestHypervisorConfigurationFluentBuilder::set_password):<br>required: **false**<br><p>The password for the hypervisor.</p><br>
10    /// - On success, responds with [`TestHypervisorConfigurationOutput`](crate::operation::test_hypervisor_configuration::TestHypervisorConfigurationOutput)
11    /// - On failure, responds with [`SdkError<TestHypervisorConfigurationError>`](crate::operation::test_hypervisor_configuration::TestHypervisorConfigurationError)
12    pub fn test_hypervisor_configuration(
13        &self,
14    ) -> crate::operation::test_hypervisor_configuration::builders::TestHypervisorConfigurationFluentBuilder {
15        crate::operation::test_hypervisor_configuration::builders::TestHypervisorConfigurationFluentBuilder::new(self.handle.clone())
16    }
17}