pub struct QuerySchemaVersionMetadata { /* private fields */ }
Expand description
Fluent builder constructing a request to QuerySchemaVersionMetadata
.
Queries for the schema version metadata information.
Implementations
sourceimpl QuerySchemaVersionMetadata
impl QuerySchemaVersionMetadata
sourcepub async fn send(
self
) -> Result<QuerySchemaVersionMetadataOutput, SdkError<QuerySchemaVersionMetadataError>>
pub async fn send(
self
) -> Result<QuerySchemaVersionMetadataOutput, SdkError<QuerySchemaVersionMetadataError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn schema_id(self, input: SchemaId) -> Self
pub fn schema_id(self, input: SchemaId) -> Self
A wrapper structure that may contain the schema name and Amazon Resource Name (ARN).
sourcepub fn set_schema_id(self, input: Option<SchemaId>) -> Self
pub fn set_schema_id(self, input: Option<SchemaId>) -> Self
A wrapper structure that may contain the schema name and Amazon Resource Name (ARN).
sourcepub fn schema_version_number(self, input: SchemaVersionNumber) -> Self
pub fn schema_version_number(self, input: SchemaVersionNumber) -> Self
The version number of the schema.
sourcepub fn set_schema_version_number(
self,
input: Option<SchemaVersionNumber>
) -> Self
pub fn set_schema_version_number(
self,
input: Option<SchemaVersionNumber>
) -> Self
The version number of the schema.
sourcepub fn schema_version_id(self, input: impl Into<String>) -> Self
pub fn schema_version_id(self, input: impl Into<String>) -> Self
The unique version ID of the schema version.
sourcepub fn set_schema_version_id(self, input: Option<String>) -> Self
pub fn set_schema_version_id(self, input: Option<String>) -> Self
The unique version ID of the schema version.
sourcepub fn metadata_list(self, input: MetadataKeyValuePair) -> Self
pub fn metadata_list(self, input: MetadataKeyValuePair) -> Self
Appends an item to MetadataList
.
To override the contents of this collection use set_metadata_list
.
Search key-value pairs for metadata, if they are not provided all the metadata information will be fetched.
sourcepub fn set_metadata_list(self, input: Option<Vec<MetadataKeyValuePair>>) -> Self
pub fn set_metadata_list(self, input: Option<Vec<MetadataKeyValuePair>>) -> Self
Search key-value pairs for metadata, if they are not provided all the metadata information will be fetched.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
Maximum number of results required per page. If the value is not supplied, this will be defaulted to 25 per page.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
Maximum number of results required per page. If the value is not supplied, this will be defaulted to 25 per page.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A continuation token, if this is a continuation call.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A continuation token, if this is a continuation call.
Trait Implementations
sourceimpl Clone for QuerySchemaVersionMetadata
impl Clone for QuerySchemaVersionMetadata
sourcefn clone(&self) -> QuerySchemaVersionMetadata
fn clone(&self) -> QuerySchemaVersionMetadata
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
Auto Trait Implementations
impl !RefUnwindSafe for QuerySchemaVersionMetadata
impl Send for QuerySchemaVersionMetadata
impl Sync for QuerySchemaVersionMetadata
impl Unpin for QuerySchemaVersionMetadata
impl !UnwindSafe for QuerySchemaVersionMetadata
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more