#[non_exhaustive]pub struct ListSchemasInputBuilder { /* private fields */ }Expand description
A builder for ListSchemasInput.
Implementations§
source§impl ListSchemasInputBuilder
impl ListSchemasInputBuilder
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 schema_name_prefix(self, input: impl Into<String>) -> Self
pub fn schema_name_prefix(self, input: impl Into<String>) -> Self
Specifying this limits the results to only those schema names that start with the specified prefix.
sourcepub fn set_schema_name_prefix(self, input: Option<String>) -> Self
pub fn set_schema_name_prefix(self, input: Option<String>) -> Self
Specifying this limits the results to only those schema names that start with the specified prefix.
sourcepub fn get_schema_name_prefix(&self) -> &Option<String>
pub fn get_schema_name_prefix(&self) -> &Option<String>
Specifying this limits the results to only those schema names that start with the specified prefix.
sourcepub fn build(self) -> Result<ListSchemasInput, BuildError>
pub fn build(self) -> Result<ListSchemasInput, BuildError>
Consumes the builder and constructs a ListSchemasInput.
source§impl ListSchemasInputBuilder
impl ListSchemasInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListSchemasOutput, SdkError<ListSchemasError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListSchemasOutput, SdkError<ListSchemasError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListSchemasInputBuilder
impl Clone for ListSchemasInputBuilder
source§fn clone(&self) -> ListSchemasInputBuilder
fn clone(&self) -> ListSchemasInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListSchemasInputBuilder
impl Debug for ListSchemasInputBuilder
source§impl Default for ListSchemasInputBuilder
impl Default for ListSchemasInputBuilder
source§fn default() -> ListSchemasInputBuilder
fn default() -> ListSchemasInputBuilder
source§impl PartialEq for ListSchemasInputBuilder
impl PartialEq for ListSchemasInputBuilder
source§fn eq(&self, other: &ListSchemasInputBuilder) -> bool
fn eq(&self, other: &ListSchemasInputBuilder) -> bool
self and other values to be equal, and is used
by ==.