#[non_exhaustive]pub struct SearchSchemasOutputBuilder { /* private fields */ }Expand description
A builder for SearchSchemasOutput.
Implementations§
source§impl SearchSchemasOutputBuilder
impl SearchSchemasOutputBuilder
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The token that specifies the next page of results to return. To request the first page, leave NextToken empty. The token will expire in 24 hours, and cannot be shared with other accounts.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The token that specifies the next page of results to return. To request the first page, leave NextToken empty. The token will expire in 24 hours, and cannot be shared with other accounts.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The token that specifies the next page of results to return. To request the first page, leave NextToken empty. The token will expire in 24 hours, and cannot be shared with other accounts.
sourcepub fn schemas(self, input: SearchSchemaSummary) -> Self
pub fn schemas(self, input: SearchSchemaSummary) -> Self
Appends an item to schemas.
To override the contents of this collection use set_schemas.
An array of SearchSchemaSummary information.
sourcepub fn set_schemas(self, input: Option<Vec<SearchSchemaSummary>>) -> Self
pub fn set_schemas(self, input: Option<Vec<SearchSchemaSummary>>) -> Self
An array of SearchSchemaSummary information.
sourcepub fn get_schemas(&self) -> &Option<Vec<SearchSchemaSummary>>
pub fn get_schemas(&self) -> &Option<Vec<SearchSchemaSummary>>
An array of SearchSchemaSummary information.
sourcepub fn build(self) -> SearchSchemasOutput
pub fn build(self) -> SearchSchemasOutput
Consumes the builder and constructs a SearchSchemasOutput.
Trait Implementations§
source§impl Clone for SearchSchemasOutputBuilder
impl Clone for SearchSchemasOutputBuilder
source§fn clone(&self) -> SearchSchemasOutputBuilder
fn clone(&self) -> SearchSchemasOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for SearchSchemasOutputBuilder
impl Debug for SearchSchemasOutputBuilder
source§impl Default for SearchSchemasOutputBuilder
impl Default for SearchSchemasOutputBuilder
source§fn default() -> SearchSchemasOutputBuilder
fn default() -> SearchSchemasOutputBuilder
source§impl PartialEq for SearchSchemasOutputBuilder
impl PartialEq for SearchSchemasOutputBuilder
source§fn eq(&self, other: &SearchSchemasOutputBuilder) -> bool
fn eq(&self, other: &SearchSchemasOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.