#[non_exhaustive]pub struct DataSourceIntrospectionResult {
pub models: Option<Vec<DataSourceIntrospectionModel>>,
pub next_token: Option<String>,
}
Expand description
Represents the output of a DataSourceIntrospectionResult
. This is the populated result of a GetDataSourceIntrospection
operation.
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.models: Option<Vec<DataSourceIntrospectionModel>>
The array of DataSourceIntrospectionModel
objects.
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.
Implementations§
source§impl DataSourceIntrospectionResult
impl DataSourceIntrospectionResult
sourcepub fn models(&self) -> &[DataSourceIntrospectionModel]
pub fn models(&self) -> &[DataSourceIntrospectionModel]
The array of DataSourceIntrospectionModel
objects.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .models.is_none()
.
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.
source§impl DataSourceIntrospectionResult
impl DataSourceIntrospectionResult
sourcepub fn builder() -> DataSourceIntrospectionResultBuilder
pub fn builder() -> DataSourceIntrospectionResultBuilder
Creates a new builder-style object to manufacture DataSourceIntrospectionResult
.
Trait Implementations§
source§impl Clone for DataSourceIntrospectionResult
impl Clone for DataSourceIntrospectionResult
source§fn clone(&self) -> DataSourceIntrospectionResult
fn clone(&self) -> DataSourceIntrospectionResult
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for DataSourceIntrospectionResult
impl PartialEq for DataSourceIntrospectionResult
source§fn eq(&self, other: &DataSourceIntrospectionResult) -> bool
fn eq(&self, other: &DataSourceIntrospectionResult) -> bool
self
and other
values to be equal, and is used
by ==
.