#[non_exhaustive]pub struct ListSchemaVersionsInput {
pub schema_id: Option<SchemaId>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.schema_id: Option<SchemaId>This is a wrapper structure to contain schema identity fields. The structure contains:
-
SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. Either
SchemaArnorSchemaNameandRegistryNamehas to be provided. -
SchemaId$SchemaName: The name of the schema. Either
SchemaArnorSchemaNameandRegistryNamehas to be provided.
max_results: Option<i32>Maximum number of results required per page. If the value is not supplied, this will be defaulted to 25 per page.
next_token: Option<String>A continuation token, if this is a continuation call.
Implementations§
Source§impl ListSchemaVersionsInput
impl ListSchemaVersionsInput
Sourcepub fn schema_id(&self) -> Option<&SchemaId>
pub fn schema_id(&self) -> Option<&SchemaId>
This is a wrapper structure to contain schema identity fields. The structure contains:
-
SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. Either
SchemaArnorSchemaNameandRegistryNamehas to be provided. -
SchemaId$SchemaName: The name of the schema. Either
SchemaArnorSchemaNameandRegistryNamehas to be provided.
Sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
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) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A continuation token, if this is a continuation call.
Source§impl ListSchemaVersionsInput
impl ListSchemaVersionsInput
Sourcepub fn builder() -> ListSchemaVersionsInputBuilder
pub fn builder() -> ListSchemaVersionsInputBuilder
Creates a new builder-style object to manufacture ListSchemaVersionsInput.
Trait Implementations§
Source§impl Clone for ListSchemaVersionsInput
impl Clone for ListSchemaVersionsInput
Source§fn clone(&self) -> ListSchemaVersionsInput
fn clone(&self) -> ListSchemaVersionsInput
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for ListSchemaVersionsInput
impl Debug for ListSchemaVersionsInput
Source§impl PartialEq for ListSchemaVersionsInput
impl PartialEq for ListSchemaVersionsInput
Source§fn eq(&self, other: &ListSchemaVersionsInput) -> bool
fn eq(&self, other: &ListSchemaVersionsInput) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListSchemaVersionsInput
Auto Trait Implementations§
impl Freeze for ListSchemaVersionsInput
impl RefUnwindSafe for ListSchemaVersionsInput
impl Send for ListSchemaVersionsInput
impl Sync for ListSchemaVersionsInput
impl Unpin for ListSchemaVersionsInput
impl UnsafeUnpin for ListSchemaVersionsInput
impl UnwindSafe for ListSchemaVersionsInput
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