Struct aws_sdk_appsync::operation::get_data_source_introspection::GetDataSourceIntrospectionInput
source · #[non_exhaustive]pub struct GetDataSourceIntrospectionInput {
pub introspection_id: Option<String>,
pub include_models_sdl: Option<bool>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}
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.introspection_id: Option<String>
The introspection ID. Each introspection contains a unique ID that can be used to reference the instrospection record.
include_models_sdl: Option<bool>
A boolean flag that determines whether SDL should be generated for introspected types or not. If set to true
, each model will contain an sdl
property that contains the SDL for that type. The SDL only contains the type data and no additional metadata or directives.
next_token: Option<String>
Determines the number of types to be returned in a single response before paginating. This value is typically taken from nextToken
value from the previous response.
max_results: Option<i32>
The maximum number of introspected types that will be returned in a single response.
Implementations§
source§impl GetDataSourceIntrospectionInput
impl GetDataSourceIntrospectionInput
sourcepub fn introspection_id(&self) -> Option<&str>
pub fn introspection_id(&self) -> Option<&str>
The introspection ID. Each introspection contains a unique ID that can be used to reference the instrospection record.
sourcepub fn include_models_sdl(&self) -> Option<bool>
pub fn include_models_sdl(&self) -> Option<bool>
A boolean flag that determines whether SDL should be generated for introspected types or not. If set to true
, each model will contain an sdl
property that contains the SDL for that type. The SDL only contains the type data and no additional metadata or directives.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
Determines the number of types to be returned in a single response before paginating. This value is typically taken from nextToken
value from the previous response.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of introspected types that will be returned in a single response.
source§impl GetDataSourceIntrospectionInput
impl GetDataSourceIntrospectionInput
sourcepub fn builder() -> GetDataSourceIntrospectionInputBuilder
pub fn builder() -> GetDataSourceIntrospectionInputBuilder
Creates a new builder-style object to manufacture GetDataSourceIntrospectionInput
.
Trait Implementations§
source§impl Clone for GetDataSourceIntrospectionInput
impl Clone for GetDataSourceIntrospectionInput
source§fn clone(&self) -> GetDataSourceIntrospectionInput
fn clone(&self) -> GetDataSourceIntrospectionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for GetDataSourceIntrospectionInput
impl PartialEq for GetDataSourceIntrospectionInput
source§fn eq(&self, other: &GetDataSourceIntrospectionInput) -> bool
fn eq(&self, other: &GetDataSourceIntrospectionInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetDataSourceIntrospectionInput
Auto Trait Implementations§
impl Freeze for GetDataSourceIntrospectionInput
impl RefUnwindSafe for GetDataSourceIntrospectionInput
impl Send for GetDataSourceIntrospectionInput
impl Sync for GetDataSourceIntrospectionInput
impl Unpin for GetDataSourceIntrospectionInput
impl UnwindSafe for GetDataSourceIntrospectionInput
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> 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