#[non_exhaustive]pub struct SearchSchemasInputBuilder { /* private fields */ }Expand description
A builder for SearchSchemasInput.
Implementations§
source§impl SearchSchemasInputBuilder
impl SearchSchemasInputBuilder
sourcepub fn keywords(self, input: impl Into<String>) -> Self
pub fn keywords(self, input: impl Into<String>) -> Self
Specifying this limits the results to only schemas that include the provided keywords.
This field is required.sourcepub fn set_keywords(self, input: Option<String>) -> Self
pub fn set_keywords(self, input: Option<String>) -> Self
Specifying this limits the results to only schemas that include the provided keywords.
sourcepub fn get_keywords(&self) -> &Option<String>
pub fn get_keywords(&self) -> &Option<String>
Specifying this limits the results to only schemas that include the provided keywords.
pub fn limit(self, input: i32) -> Self
pub fn set_limit(self, input: Option<i32>) -> Self
pub fn get_limit(&self) -> &Option<i32>
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 registry_name(self, input: impl Into<String>) -> Self
pub fn registry_name(self, input: impl Into<String>) -> Self
The name of the registry.
This field is required.sourcepub fn set_registry_name(self, input: Option<String>) -> Self
pub fn set_registry_name(self, input: Option<String>) -> Self
The name of the registry.
sourcepub fn get_registry_name(&self) -> &Option<String>
pub fn get_registry_name(&self) -> &Option<String>
The name of the registry.
sourcepub fn build(self) -> Result<SearchSchemasInput, BuildError>
pub fn build(self) -> Result<SearchSchemasInput, BuildError>
Consumes the builder and constructs a SearchSchemasInput.
source§impl SearchSchemasInputBuilder
impl SearchSchemasInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<SearchSchemasOutput, SdkError<SearchSchemasError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<SearchSchemasOutput, SdkError<SearchSchemasError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for SearchSchemasInputBuilder
impl Clone for SearchSchemasInputBuilder
source§fn clone(&self) -> SearchSchemasInputBuilder
fn clone(&self) -> SearchSchemasInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for SearchSchemasInputBuilder
impl Debug for SearchSchemasInputBuilder
source§impl Default for SearchSchemasInputBuilder
impl Default for SearchSchemasInputBuilder
source§fn default() -> SearchSchemasInputBuilder
fn default() -> SearchSchemasInputBuilder
source§impl PartialEq for SearchSchemasInputBuilder
impl PartialEq for SearchSchemasInputBuilder
source§fn eq(&self, other: &SearchSchemasInputBuilder) -> bool
fn eq(&self, other: &SearchSchemasInputBuilder) -> bool
self and other values to be equal, and is used
by ==.