aws_sdk_backupgateway/client/
get_hypervisor_property_mappings.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 [`GetHypervisorPropertyMappings`](crate::operation::get_hypervisor_property_mappings::builders::GetHypervisorPropertyMappingsFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`hypervisor_arn(impl Into<String>)`](crate::operation::get_hypervisor_property_mappings::builders::GetHypervisorPropertyMappingsFluentBuilder::hypervisor_arn) / [`set_hypervisor_arn(Option<String>)`](crate::operation::get_hypervisor_property_mappings::builders::GetHypervisorPropertyMappingsFluentBuilder::set_hypervisor_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the hypervisor.</p><br>
7    /// - On success, responds with [`GetHypervisorPropertyMappingsOutput`](crate::operation::get_hypervisor_property_mappings::GetHypervisorPropertyMappingsOutput) with field(s):
8    ///   - [`hypervisor_arn(Option<String>)`](crate::operation::get_hypervisor_property_mappings::GetHypervisorPropertyMappingsOutput::hypervisor_arn): <p>The Amazon Resource Name (ARN) of the hypervisor.</p>
9    ///   - [`vmware_to_aws_tag_mappings(Option<Vec::<VmwareToAwsTagMapping>>)`](crate::operation::get_hypervisor_property_mappings::GetHypervisorPropertyMappingsOutput::vmware_to_aws_tag_mappings): <p>This is a display of the mappings of on-premises VMware tags to the Amazon Web Services tags.</p>
10    ///   - [`iam_role_arn(Option<String>)`](crate::operation::get_hypervisor_property_mappings::GetHypervisorPropertyMappingsOutput::iam_role_arn): <p>The Amazon Resource Name (ARN) of the IAM role.</p>
11    /// - On failure, responds with [`SdkError<GetHypervisorPropertyMappingsError>`](crate::operation::get_hypervisor_property_mappings::GetHypervisorPropertyMappingsError)
12    pub fn get_hypervisor_property_mappings(
13        &self,
14    ) -> crate::operation::get_hypervisor_property_mappings::builders::GetHypervisorPropertyMappingsFluentBuilder {
15        crate::operation::get_hypervisor_property_mappings::builders::GetHypervisorPropertyMappingsFluentBuilder::new(self.handle.clone())
16    }
17}