aws_sdk_odb/client/
get_cloud_vm_cluster.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 [`GetCloudVmCluster`](crate::operation::get_cloud_vm_cluster::builders::GetCloudVmClusterFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`cloud_vm_cluster_id(impl Into<String>)`](crate::operation::get_cloud_vm_cluster::builders::GetCloudVmClusterFluentBuilder::cloud_vm_cluster_id) / [`set_cloud_vm_cluster_id(Option<String>)`](crate::operation::get_cloud_vm_cluster::builders::GetCloudVmClusterFluentBuilder::set_cloud_vm_cluster_id):<br>required: **true**<br><p>The unique identifier of the VM cluster.</p><br>
7    /// - On success, responds with [`GetCloudVmClusterOutput`](crate::operation::get_cloud_vm_cluster::GetCloudVmClusterOutput) with field(s):
8    ///   - [`cloud_vm_cluster(Option<CloudVmCluster>)`](crate::operation::get_cloud_vm_cluster::GetCloudVmClusterOutput::cloud_vm_cluster): <p>The VM cluster.</p>
9    /// - On failure, responds with [`SdkError<GetCloudVmClusterError>`](crate::operation::get_cloud_vm_cluster::GetCloudVmClusterError)
10    pub fn get_cloud_vm_cluster(&self) -> crate::operation::get_cloud_vm_cluster::builders::GetCloudVmClusterFluentBuilder {
11        crate::operation::get_cloud_vm_cluster::builders::GetCloudVmClusterFluentBuilder::new(self.handle.clone())
12    }
13}