Struct aws_sdk_migrationhubstrategy::operation::get_server_details::builders::GetServerDetailsFluentBuilder
source · pub struct GetServerDetailsFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to GetServerDetails.
Retrieves detailed information about a specified server.
Implementations§
source§impl GetServerDetailsFluentBuilder
impl GetServerDetailsFluentBuilder
sourcepub fn as_input(&self) -> &GetServerDetailsInputBuilder
pub fn as_input(&self) -> &GetServerDetailsInputBuilder
Access the GetServerDetails as a reference.
sourcepub async fn send(
self
) -> Result<GetServerDetailsOutput, SdkError<GetServerDetailsError, HttpResponse>>
pub async fn send( self ) -> Result<GetServerDetailsOutput, SdkError<GetServerDetailsError, 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 async fn customize(
self
) -> Result<CustomizableOperation<GetServerDetailsOutput, GetServerDetailsError, Self>, SdkError<GetServerDetailsError>>
pub async fn customize( self ) -> Result<CustomizableOperation<GetServerDetailsOutput, GetServerDetailsError, Self>, SdkError<GetServerDetailsError>>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn into_paginator(self) -> GetServerDetailsPaginator
pub fn into_paginator(self) -> GetServerDetailsPaginator
Create a paginator for this request
Paginators are used by calling send().await which returns a Stream.
sourcepub fn set_server_id(self, input: Option<String>) -> Self
pub fn set_server_id(self, input: Option<String>) -> Self
The ID of the server.
sourcepub fn get_server_id(&self) -> &Option<String>
pub fn get_server_id(&self) -> &Option<String>
The ID of the server.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The token from a previous call that you use to retrieve the next set of results. For example, if a previous call to this action returned 100 items, but you set maxResults to 10. You'll receive a set of 10 results along with a token. You then use the returned token to retrieve the next set of 10.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The token from a previous call that you use to retrieve the next set of results. For example, if a previous call to this action returned 100 items, but you set maxResults to 10. You'll receive a set of 10 results along with a token. You then use the returned token to retrieve the next set of 10.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The token from a previous call that you use to retrieve the next set of results. For example, if a previous call to this action returned 100 items, but you set maxResults to 10. You'll receive a set of 10 results along with a token. You then use the returned token to retrieve the next set of 10.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of items to include in the response. The maximum value is 100.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of items to include in the response. The maximum value is 100.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The maximum number of items to include in the response. The maximum value is 100.
Trait Implementations§
source§impl Clone for GetServerDetailsFluentBuilder
impl Clone for GetServerDetailsFluentBuilder
source§fn clone(&self) -> GetServerDetailsFluentBuilder
fn clone(&self) -> GetServerDetailsFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more