Struct aws_sdk_migrationhubstrategy::operation::get_server_details::builders::GetServerDetailsOutputBuilder
source · #[non_exhaustive]pub struct GetServerDetailsOutputBuilder { /* private fields */ }
Expand description
A builder for GetServerDetailsOutput
.
Implementations§
source§impl GetServerDetailsOutputBuilder
impl GetServerDetailsOutputBuilder
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The token you use to retrieve the next set of results, or null if there are no more results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The token you use to retrieve the next set of results, or null if there are no more results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The token you use to retrieve the next set of results, or null if there are no more results.
sourcepub fn server_detail(self, input: ServerDetail) -> Self
pub fn server_detail(self, input: ServerDetail) -> Self
Detailed information about the server.
sourcepub fn set_server_detail(self, input: Option<ServerDetail>) -> Self
pub fn set_server_detail(self, input: Option<ServerDetail>) -> Self
Detailed information about the server.
sourcepub fn get_server_detail(&self) -> &Option<ServerDetail>
pub fn get_server_detail(&self) -> &Option<ServerDetail>
Detailed information about the server.
sourcepub fn associated_applications(self, input: AssociatedApplication) -> Self
pub fn associated_applications(self, input: AssociatedApplication) -> Self
Appends an item to associated_applications
.
To override the contents of this collection use set_associated_applications
.
The associated application group the server belongs to, as defined in AWS Application Discovery Service.
sourcepub fn set_associated_applications(
self,
input: Option<Vec<AssociatedApplication>>
) -> Self
pub fn set_associated_applications( self, input: Option<Vec<AssociatedApplication>> ) -> Self
The associated application group the server belongs to, as defined in AWS Application Discovery Service.
sourcepub fn get_associated_applications(&self) -> &Option<Vec<AssociatedApplication>>
pub fn get_associated_applications(&self) -> &Option<Vec<AssociatedApplication>>
The associated application group the server belongs to, as defined in AWS Application Discovery Service.
sourcepub fn build(self) -> GetServerDetailsOutput
pub fn build(self) -> GetServerDetailsOutput
Consumes the builder and constructs a GetServerDetailsOutput
.
Trait Implementations§
source§impl Clone for GetServerDetailsOutputBuilder
impl Clone for GetServerDetailsOutputBuilder
source§fn clone(&self) -> GetServerDetailsOutputBuilder
fn clone(&self) -> GetServerDetailsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for GetServerDetailsOutputBuilder
impl Default for GetServerDetailsOutputBuilder
source§fn default() -> GetServerDetailsOutputBuilder
fn default() -> GetServerDetailsOutputBuilder
source§impl PartialEq for GetServerDetailsOutputBuilder
impl PartialEq for GetServerDetailsOutputBuilder
source§fn eq(&self, other: &GetServerDetailsOutputBuilder) -> bool
fn eq(&self, other: &GetServerDetailsOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetServerDetailsOutputBuilder
Auto Trait Implementations§
impl Freeze for GetServerDetailsOutputBuilder
impl RefUnwindSafe for GetServerDetailsOutputBuilder
impl Send for GetServerDetailsOutputBuilder
impl Sync for GetServerDetailsOutputBuilder
impl Unpin for GetServerDetailsOutputBuilder
impl UnwindSafe for GetServerDetailsOutputBuilder
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> 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