aws-sdk-odb 1.26.0

AWS SDK for odb
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetDbNode`](crate::operation::get_db_node::builders::GetDbNodeFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`cloud_vm_cluster_id(impl Into<String>)`](crate::operation::get_db_node::builders::GetDbNodeFluentBuilder::cloud_vm_cluster_id) / [`set_cloud_vm_cluster_id(Option<String>)`](crate::operation::get_db_node::builders::GetDbNodeFluentBuilder::set_cloud_vm_cluster_id):<br>required: **true**<br><p>The unique identifier of the VM cluster that contains the DB node.</p><br>
    ///   - [`db_node_id(impl Into<String>)`](crate::operation::get_db_node::builders::GetDbNodeFluentBuilder::db_node_id) / [`set_db_node_id(Option<String>)`](crate::operation::get_db_node::builders::GetDbNodeFluentBuilder::set_db_node_id):<br>required: **true**<br><p>The unique identifier of the DB node to retrieve information about.</p><br>
    /// - On success, responds with [`GetDbNodeOutput`](crate::operation::get_db_node::GetDbNodeOutput) with field(s):
    ///   - [`db_node(Option<DbNode>)`](crate::operation::get_db_node::GetDbNodeOutput::db_node): <p>Information about a DB node.</p>
    /// - On failure, responds with [`SdkError<GetDbNodeError>`](crate::operation::get_db_node::GetDbNodeError)
    pub fn get_db_node(&self) -> crate::operation::get_db_node::builders::GetDbNodeFluentBuilder {
        crate::operation::get_db_node::builders::GetDbNodeFluentBuilder::new(self.handle.clone())
    }
}