aws-sdk-odb 1.30.0

AWS SDK for odb
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`StartDbNode`](crate::operation::start_db_node::builders::StartDbNodeFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`cloud_vm_cluster_id(impl Into<String>)`](crate::operation::start_db_node::builders::StartDbNodeFluentBuilder::cloud_vm_cluster_id) / [`set_cloud_vm_cluster_id(Option<String>)`](crate::operation::start_db_node::builders::StartDbNodeFluentBuilder::set_cloud_vm_cluster_id):<br>required: **true**<br><p>The unique identifier of the VM cluster that contains the DB node to start.</p><br>
    ///   - [`db_node_id(impl Into<String>)`](crate::operation::start_db_node::builders::StartDbNodeFluentBuilder::db_node_id) / [`set_db_node_id(Option<String>)`](crate::operation::start_db_node::builders::StartDbNodeFluentBuilder::set_db_node_id):<br>required: **true**<br><p>The unique identifier of the DB node to start.</p><br>
    /// - On success, responds with [`StartDbNodeOutput`](crate::operation::start_db_node::StartDbNodeOutput) with field(s):
    ///   - [`db_node_id(String)`](crate::operation::start_db_node::StartDbNodeOutput::db_node_id): <p>The unique identifier of the DB node that was started.</p>
    ///   - [`status(Option<DbNodeResourceStatus>)`](crate::operation::start_db_node::StartDbNodeOutput::status): <p>The current status of the DB node after the start operation.</p>
    ///   - [`status_reason(Option<String>)`](crate::operation::start_db_node::StartDbNodeOutput::status_reason): <p>Additional information about the status of the DB node after the start operation.</p>
    /// - On failure, responds with [`SdkError<StartDbNodeError>`](crate::operation::start_db_node::StartDbNodeError)
    pub fn start_db_node(&self) -> crate::operation::start_db_node::builders::StartDbNodeFluentBuilder {
        crate::operation::start_db_node::builders::StartDbNodeFluentBuilder::new(self.handle.clone())
    }
}