Struct aws_sdk_databasemigration::operation::describe_migration_projects::builders::DescribeMigrationProjectsOutputBuilder
source · #[non_exhaustive]pub struct DescribeMigrationProjectsOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeMigrationProjectsOutput
.
Implementations§
source§impl DescribeMigrationProjectsOutputBuilder
impl DescribeMigrationProjectsOutputBuilder
sourcepub fn marker(self, input: impl Into<String>) -> Self
pub fn marker(self, input: impl Into<String>) -> Self
Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords
.
If Marker
is returned by a previous response, there are more results available. The value of Marker
is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.
sourcepub fn set_marker(self, input: Option<String>) -> Self
pub fn set_marker(self, input: Option<String>) -> Self
Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords
.
If Marker
is returned by a previous response, there are more results available. The value of Marker
is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.
sourcepub fn get_marker(&self) -> &Option<String>
pub fn get_marker(&self) -> &Option<String>
Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords
.
If Marker
is returned by a previous response, there are more results available. The value of Marker
is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.
sourcepub fn migration_projects(self, input: MigrationProject) -> Self
pub fn migration_projects(self, input: MigrationProject) -> Self
Appends an item to migration_projects
.
To override the contents of this collection use set_migration_projects
.
A description of migration projects.
sourcepub fn set_migration_projects(
self,
input: Option<Vec<MigrationProject>>
) -> Self
pub fn set_migration_projects( self, input: Option<Vec<MigrationProject>> ) -> Self
A description of migration projects.
sourcepub fn get_migration_projects(&self) -> &Option<Vec<MigrationProject>>
pub fn get_migration_projects(&self) -> &Option<Vec<MigrationProject>>
A description of migration projects.
sourcepub fn build(self) -> DescribeMigrationProjectsOutput
pub fn build(self) -> DescribeMigrationProjectsOutput
Consumes the builder and constructs a DescribeMigrationProjectsOutput
.
Trait Implementations§
source§impl Clone for DescribeMigrationProjectsOutputBuilder
impl Clone for DescribeMigrationProjectsOutputBuilder
source§fn clone(&self) -> DescribeMigrationProjectsOutputBuilder
fn clone(&self) -> DescribeMigrationProjectsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DescribeMigrationProjectsOutputBuilder
impl Default for DescribeMigrationProjectsOutputBuilder
source§fn default() -> DescribeMigrationProjectsOutputBuilder
fn default() -> DescribeMigrationProjectsOutputBuilder
source§impl PartialEq for DescribeMigrationProjectsOutputBuilder
impl PartialEq for DescribeMigrationProjectsOutputBuilder
source§fn eq(&self, other: &DescribeMigrationProjectsOutputBuilder) -> bool
fn eq(&self, other: &DescribeMigrationProjectsOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeMigrationProjectsOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeMigrationProjectsOutputBuilder
impl RefUnwindSafe for DescribeMigrationProjectsOutputBuilder
impl Send for DescribeMigrationProjectsOutputBuilder
impl Sync for DescribeMigrationProjectsOutputBuilder
impl Unpin for DescribeMigrationProjectsOutputBuilder
impl UnwindSafe for DescribeMigrationProjectsOutputBuilder
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