#[non_exhaustive]pub struct ListSchemasOutputBuilder { /* private fields */ }Expand description
A builder for ListSchemasOutput.
Implementations§
source§impl ListSchemasOutputBuilder
impl ListSchemasOutputBuilder
sourcepub fn schemas(self, input: impl Into<String>) -> Self
pub fn schemas(self, input: impl Into<String>) -> Self
Appends an item to schemas.
To override the contents of this collection use set_schemas.
The schemas that match the request pattern.
sourcepub fn set_schemas(self, input: Option<Vec<String>>) -> Self
pub fn set_schemas(self, input: Option<Vec<String>>) -> Self
The schemas that match the request pattern.
sourcepub fn get_schemas(&self) -> &Option<Vec<String>>
pub fn get_schemas(&self) -> &Option<Vec<String>>
The schemas that match the request pattern.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned NextToken value in the next NextToken parameter and retrying the command. If the NextToken field is empty, all response records have been retrieved for the request.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned NextToken value in the next NextToken parameter and retrying the command. If the NextToken field is empty, all response records have been retrieved for the request.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned NextToken value in the next NextToken parameter and retrying the command. If the NextToken field is empty, all response records have been retrieved for the request.
sourcepub fn build(self) -> ListSchemasOutput
pub fn build(self) -> ListSchemasOutput
Consumes the builder and constructs a ListSchemasOutput.
Trait Implementations§
source§impl Clone for ListSchemasOutputBuilder
impl Clone for ListSchemasOutputBuilder
source§fn clone(&self) -> ListSchemasOutputBuilder
fn clone(&self) -> ListSchemasOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListSchemasOutputBuilder
impl Debug for ListSchemasOutputBuilder
source§impl Default for ListSchemasOutputBuilder
impl Default for ListSchemasOutputBuilder
source§fn default() -> ListSchemasOutputBuilder
fn default() -> ListSchemasOutputBuilder
source§impl PartialEq for ListSchemasOutputBuilder
impl PartialEq for ListSchemasOutputBuilder
impl StructuralPartialEq for ListSchemasOutputBuilder
Auto Trait Implementations§
impl Freeze for ListSchemasOutputBuilder
impl RefUnwindSafe for ListSchemasOutputBuilder
impl Send for ListSchemasOutputBuilder
impl Sync for ListSchemasOutputBuilder
impl Unpin for ListSchemasOutputBuilder
impl UnwindSafe for ListSchemasOutputBuilder
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