pub struct StartServerFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to StartServer
.
Changes the state of a file transfer protocol-enabled server from OFFLINE
to ONLINE
. It has no impact on a server that is already ONLINE
. An ONLINE
server can accept and process file transfer jobs.
The state of STARTING
indicates that the server is in an intermediate state, either not fully able to respond, or not fully online. The values of START_FAILED
can indicate an error condition.
No response is returned from this call.
Implementations§
source§impl StartServerFluentBuilder
impl StartServerFluentBuilder
sourcepub fn as_input(&self) -> &StartServerInputBuilder
pub fn as_input(&self) -> &StartServerInputBuilder
Access the StartServer as a reference.
sourcepub async fn send(
self
) -> Result<StartServerOutput, SdkError<StartServerError, HttpResponse>>
pub async fn send( self ) -> Result<StartServerOutput, SdkError<StartServerError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<StartServerOutput, StartServerError, Self>
pub fn customize( self ) -> CustomizableOperation<StartServerOutput, StartServerError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn server_id(self, input: impl Into<String>) -> Self
pub fn server_id(self, input: impl Into<String>) -> Self
A system-assigned unique identifier for a server that you start.
sourcepub fn set_server_id(self, input: Option<String>) -> Self
pub fn set_server_id(self, input: Option<String>) -> Self
A system-assigned unique identifier for a server that you start.
sourcepub fn get_server_id(&self) -> &Option<String>
pub fn get_server_id(&self) -> &Option<String>
A system-assigned unique identifier for a server that you start.
Trait Implementations§
source§impl Clone for StartServerFluentBuilder
impl Clone for StartServerFluentBuilder
source§fn clone(&self) -> StartServerFluentBuilder
fn clone(&self) -> StartServerFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more