Struct aws_sdk_databasemigration::operation::describe_fleet_advisor_databases::builders::DescribeFleetAdvisorDatabasesOutputBuilder
source · #[non_exhaustive]pub struct DescribeFleetAdvisorDatabasesOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeFleetAdvisorDatabasesOutput
.
Implementations§
source§impl DescribeFleetAdvisorDatabasesOutputBuilder
impl DescribeFleetAdvisorDatabasesOutputBuilder
sourcepub fn databases(self, input: DatabaseResponse) -> Self
pub fn databases(self, input: DatabaseResponse) -> Self
Appends an item to databases
.
To override the contents of this collection use set_databases
.
Provides descriptions of the Fleet Advisor collector databases, including the database's collector, ID, and name.
sourcepub fn set_databases(self, input: Option<Vec<DatabaseResponse>>) -> Self
pub fn set_databases(self, input: Option<Vec<DatabaseResponse>>) -> Self
Provides descriptions of the Fleet Advisor collector databases, including the database's collector, ID, and name.
sourcepub fn get_databases(&self) -> &Option<Vec<DatabaseResponse>>
pub fn get_databases(&self) -> &Option<Vec<DatabaseResponse>>
Provides descriptions of the Fleet Advisor collector databases, including the database's collector, ID, and name.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
If NextToken
is returned, there are more results available. The value of NextToken
is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
If NextToken
is returned, there are more results available. The value of NextToken
is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
If NextToken
is returned, there are more results available. The value of NextToken
is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
sourcepub fn build(self) -> DescribeFleetAdvisorDatabasesOutput
pub fn build(self) -> DescribeFleetAdvisorDatabasesOutput
Consumes the builder and constructs a DescribeFleetAdvisorDatabasesOutput
.
Trait Implementations§
source§impl Clone for DescribeFleetAdvisorDatabasesOutputBuilder
impl Clone for DescribeFleetAdvisorDatabasesOutputBuilder
source§fn clone(&self) -> DescribeFleetAdvisorDatabasesOutputBuilder
fn clone(&self) -> DescribeFleetAdvisorDatabasesOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DescribeFleetAdvisorDatabasesOutputBuilder
impl Default for DescribeFleetAdvisorDatabasesOutputBuilder
source§fn default() -> DescribeFleetAdvisorDatabasesOutputBuilder
fn default() -> DescribeFleetAdvisorDatabasesOutputBuilder
source§impl PartialEq for DescribeFleetAdvisorDatabasesOutputBuilder
impl PartialEq for DescribeFleetAdvisorDatabasesOutputBuilder
source§fn eq(&self, other: &DescribeFleetAdvisorDatabasesOutputBuilder) -> bool
fn eq(&self, other: &DescribeFleetAdvisorDatabasesOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeFleetAdvisorDatabasesOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeFleetAdvisorDatabasesOutputBuilder
impl RefUnwindSafe for DescribeFleetAdvisorDatabasesOutputBuilder
impl Send for DescribeFleetAdvisorDatabasesOutputBuilder
impl Sync for DescribeFleetAdvisorDatabasesOutputBuilder
impl Unpin for DescribeFleetAdvisorDatabasesOutputBuilder
impl UnwindSafe for DescribeFleetAdvisorDatabasesOutputBuilder
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