aws_sdk_transfer/client/
start_server.rs

1
2
3
4
5
6
7
8
9
10
11
12
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`StartServer`](crate::operation::start_server::builders::StartServerFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`server_id(impl Into<String>)`](crate::operation::start_server::builders::StartServerFluentBuilder::server_id) / [`set_server_id(Option<String>)`](crate::operation::start_server::builders::StartServerFluentBuilder::set_server_id):<br>required: **true**<br><p>A system-assigned unique identifier for a server that you start.</p><br>
    /// - On success, responds with [`StartServerOutput`](crate::operation::start_server::StartServerOutput)
    /// - On failure, responds with [`SdkError<StartServerError>`](crate::operation::start_server::StartServerError)
    pub fn start_server(&self) -> crate::operation::start_server::builders::StartServerFluentBuilder {
        crate::operation::start_server::builders::StartServerFluentBuilder::new(self.handle.clone())
    }
}