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 moreAuto Trait Implementations§
impl Freeze for StartServerFluentBuilder
impl !RefUnwindSafe for StartServerFluentBuilder
impl Send for StartServerFluentBuilder
impl Sync for StartServerFluentBuilder
impl Unpin for StartServerFluentBuilder
impl !UnwindSafe for StartServerFluentBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more