Struct aws_sdk_databasemigration::operation::describe_metadata_model_conversions::builders::DescribeMetadataModelConversionsOutputBuilder
source · #[non_exhaustive]pub struct DescribeMetadataModelConversionsOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeMetadataModelConversionsOutput
.
Implementations§
source§impl DescribeMetadataModelConversionsOutputBuilder
impl DescribeMetadataModelConversionsOutputBuilder
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 requests(self, input: SchemaConversionRequest) -> Self
pub fn requests(self, input: SchemaConversionRequest) -> Self
Appends an item to requests
.
To override the contents of this collection use set_requests
.
A paginated list of metadata model conversions.
sourcepub fn set_requests(self, input: Option<Vec<SchemaConversionRequest>>) -> Self
pub fn set_requests(self, input: Option<Vec<SchemaConversionRequest>>) -> Self
A paginated list of metadata model conversions.
sourcepub fn get_requests(&self) -> &Option<Vec<SchemaConversionRequest>>
pub fn get_requests(&self) -> &Option<Vec<SchemaConversionRequest>>
A paginated list of metadata model conversions.
sourcepub fn build(self) -> DescribeMetadataModelConversionsOutput
pub fn build(self) -> DescribeMetadataModelConversionsOutput
Consumes the builder and constructs a DescribeMetadataModelConversionsOutput
.
Trait Implementations§
source§impl Clone for DescribeMetadataModelConversionsOutputBuilder
impl Clone for DescribeMetadataModelConversionsOutputBuilder
source§fn clone(&self) -> DescribeMetadataModelConversionsOutputBuilder
fn clone(&self) -> DescribeMetadataModelConversionsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DescribeMetadataModelConversionsOutputBuilder
impl Default for DescribeMetadataModelConversionsOutputBuilder
source§fn default() -> DescribeMetadataModelConversionsOutputBuilder
fn default() -> DescribeMetadataModelConversionsOutputBuilder
source§impl PartialEq for DescribeMetadataModelConversionsOutputBuilder
impl PartialEq for DescribeMetadataModelConversionsOutputBuilder
source§fn eq(&self, other: &DescribeMetadataModelConversionsOutputBuilder) -> bool
fn eq(&self, other: &DescribeMetadataModelConversionsOutputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeMetadataModelConversionsOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeMetadataModelConversionsOutputBuilder
impl RefUnwindSafe for DescribeMetadataModelConversionsOutputBuilder
impl Send for DescribeMetadataModelConversionsOutputBuilder
impl Sync for DescribeMetadataModelConversionsOutputBuilder
impl Unpin for DescribeMetadataModelConversionsOutputBuilder
impl UnwindSafe for DescribeMetadataModelConversionsOutputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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