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 ==
.