pub struct StopServerFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to StopServer
.
Changes the state of a file transfer protocol-enabled server from ONLINE
to OFFLINE
. An OFFLINE
server cannot accept and process file transfer jobs. Information tied to your server, such as server and user properties, are not affected by stopping your server.
Stopping the server does not reduce or impact your file transfer protocol endpoint billing; you must delete the server to stop being billed.
The state of STOPPING
indicates that the server is in an intermediate state, either not fully able to respond, or not fully offline. The values of STOP_FAILED
can indicate an error condition.
No response is returned from this call.
Implementations§
source§impl StopServerFluentBuilder
impl StopServerFluentBuilder
sourcepub fn as_input(&self) -> &StopServerInputBuilder
pub fn as_input(&self) -> &StopServerInputBuilder
Access the StopServer as a reference.
sourcepub async fn send(
self
) -> Result<StopServerOutput, SdkError<StopServerError, HttpResponse>>
pub async fn send( self ) -> Result<StopServerOutput, SdkError<StopServerError, 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<StopServerOutput, StopServerError, Self>
pub fn customize( self ) -> CustomizableOperation<StopServerOutput, StopServerError, 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 stopped.
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 stopped.
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 stopped.
Trait Implementations§
source§impl Clone for StopServerFluentBuilder
impl Clone for StopServerFluentBuilder
source§fn clone(&self) -> StopServerFluentBuilder
fn clone(&self) -> StopServerFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more