Struct aws_sdk_databasemigration::operation::describe_data_providers::builders::DescribeDataProvidersOutputBuilder
source · #[non_exhaustive]pub struct DescribeDataProvidersOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeDataProvidersOutput
.
Implementations§
source§impl DescribeDataProvidersOutputBuilder
impl DescribeDataProvidersOutputBuilder
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 data_providers(self, input: DataProvider) -> Self
pub fn data_providers(self, input: DataProvider) -> Self
Appends an item to data_providers
.
To override the contents of this collection use set_data_providers
.
A description of data providers.
sourcepub fn set_data_providers(self, input: Option<Vec<DataProvider>>) -> Self
pub fn set_data_providers(self, input: Option<Vec<DataProvider>>) -> Self
A description of data providers.
sourcepub fn get_data_providers(&self) -> &Option<Vec<DataProvider>>
pub fn get_data_providers(&self) -> &Option<Vec<DataProvider>>
A description of data providers.
sourcepub fn build(self) -> DescribeDataProvidersOutput
pub fn build(self) -> DescribeDataProvidersOutput
Consumes the builder and constructs a DescribeDataProvidersOutput
.
Trait Implementations§
source§impl Clone for DescribeDataProvidersOutputBuilder
impl Clone for DescribeDataProvidersOutputBuilder
source§fn clone(&self) -> DescribeDataProvidersOutputBuilder
fn clone(&self) -> DescribeDataProvidersOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DescribeDataProvidersOutputBuilder
impl Default for DescribeDataProvidersOutputBuilder
source§fn default() -> DescribeDataProvidersOutputBuilder
fn default() -> DescribeDataProvidersOutputBuilder
source§impl PartialEq for DescribeDataProvidersOutputBuilder
impl PartialEq for DescribeDataProvidersOutputBuilder
source§fn eq(&self, other: &DescribeDataProvidersOutputBuilder) -> bool
fn eq(&self, other: &DescribeDataProvidersOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeDataProvidersOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeDataProvidersOutputBuilder
impl RefUnwindSafe for DescribeDataProvidersOutputBuilder
impl Send for DescribeDataProvidersOutputBuilder
impl Sync for DescribeDataProvidersOutputBuilder
impl Unpin for DescribeDataProvidersOutputBuilder
impl UnwindSafe for DescribeDataProvidersOutputBuilder
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