#[non_exhaustive]pub struct ListSchemaVersionsOutputBuilder { /* private fields */ }Expand description
A builder for ListSchemaVersionsOutput.
Implementations§
Source§impl ListSchemaVersionsOutputBuilder
impl ListSchemaVersionsOutputBuilder
Sourcepub fn schemas(self, input: SchemaVersionListItem) -> Self
pub fn schemas(self, input: SchemaVersionListItem) -> Self
Appends an item to schemas.
To override the contents of this collection use set_schemas.
An array of SchemaVersionList objects containing details of each schema version.
Sourcepub fn set_schemas(self, input: Option<Vec<SchemaVersionListItem>>) -> Self
pub fn set_schemas(self, input: Option<Vec<SchemaVersionListItem>>) -> Self
An array of SchemaVersionList objects containing details of each schema version.
Sourcepub fn get_schemas(&self) -> &Option<Vec<SchemaVersionListItem>>
pub fn get_schemas(&self) -> &Option<Vec<SchemaVersionListItem>>
An array of SchemaVersionList objects containing details of each schema version.
Sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.
Sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.
Sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.
Sourcepub fn build(self) -> ListSchemaVersionsOutput
pub fn build(self) -> ListSchemaVersionsOutput
Consumes the builder and constructs a ListSchemaVersionsOutput.
Trait Implementations§
Source§impl Clone for ListSchemaVersionsOutputBuilder
impl Clone for ListSchemaVersionsOutputBuilder
Source§fn clone(&self) -> ListSchemaVersionsOutputBuilder
fn clone(&self) -> ListSchemaVersionsOutputBuilder
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for ListSchemaVersionsOutputBuilder
impl Default for ListSchemaVersionsOutputBuilder
Source§fn default() -> ListSchemaVersionsOutputBuilder
fn default() -> ListSchemaVersionsOutputBuilder
Source§impl PartialEq for ListSchemaVersionsOutputBuilder
impl PartialEq for ListSchemaVersionsOutputBuilder
Source§fn eq(&self, other: &ListSchemaVersionsOutputBuilder) -> bool
fn eq(&self, other: &ListSchemaVersionsOutputBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListSchemaVersionsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListSchemaVersionsOutputBuilder
impl RefUnwindSafe for ListSchemaVersionsOutputBuilder
impl Send for ListSchemaVersionsOutputBuilder
impl Sync for ListSchemaVersionsOutputBuilder
impl Unpin for ListSchemaVersionsOutputBuilder
impl UnsafeUnpin for ListSchemaVersionsOutputBuilder
impl UnwindSafe for ListSchemaVersionsOutputBuilder
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§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