Struct aws_sdk_databasemigration::operation::describe_metadata_model_imports::builders::DescribeMetadataModelImportsOutputBuilder
source · #[non_exhaustive]pub struct DescribeMetadataModelImportsOutputBuilder { /* private fields */ }Expand description
A builder for DescribeMetadataModelImportsOutput.
Implementations§
source§impl DescribeMetadataModelImportsOutputBuilder
impl DescribeMetadataModelImportsOutputBuilder
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 imports.
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 imports.
sourcepub fn get_requests(&self) -> &Option<Vec<SchemaConversionRequest>>
pub fn get_requests(&self) -> &Option<Vec<SchemaConversionRequest>>
A paginated list of metadata model imports.
sourcepub fn build(self) -> DescribeMetadataModelImportsOutput
pub fn build(self) -> DescribeMetadataModelImportsOutput
Consumes the builder and constructs a DescribeMetadataModelImportsOutput.
Trait Implementations§
source§impl Clone for DescribeMetadataModelImportsOutputBuilder
impl Clone for DescribeMetadataModelImportsOutputBuilder
source§fn clone(&self) -> DescribeMetadataModelImportsOutputBuilder
fn clone(&self) -> DescribeMetadataModelImportsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for DescribeMetadataModelImportsOutputBuilder
impl Default for DescribeMetadataModelImportsOutputBuilder
source§fn default() -> DescribeMetadataModelImportsOutputBuilder
fn default() -> DescribeMetadataModelImportsOutputBuilder
source§impl PartialEq for DescribeMetadataModelImportsOutputBuilder
impl PartialEq for DescribeMetadataModelImportsOutputBuilder
source§fn eq(&self, other: &DescribeMetadataModelImportsOutputBuilder) -> bool
fn eq(&self, other: &DescribeMetadataModelImportsOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeMetadataModelImportsOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeMetadataModelImportsOutputBuilder
impl RefUnwindSafe for DescribeMetadataModelImportsOutputBuilder
impl Send for DescribeMetadataModelImportsOutputBuilder
impl Sync for DescribeMetadataModelImportsOutputBuilder
impl Unpin for DescribeMetadataModelImportsOutputBuilder
impl UnwindSafe for DescribeMetadataModelImportsOutputBuilder
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