#[non_exhaustive]pub struct DataSourceIntrospectionResultBuilder { /* private fields */ }
Expand description
A builder for DataSourceIntrospectionResult
.
Implementations§
source§impl DataSourceIntrospectionResultBuilder
impl DataSourceIntrospectionResultBuilder
sourcepub fn models(self, input: DataSourceIntrospectionModel) -> Self
pub fn models(self, input: DataSourceIntrospectionModel) -> Self
Appends an item to models
.
To override the contents of this collection use set_models
.
The array of DataSourceIntrospectionModel
objects.
sourcepub fn set_models(
self,
input: Option<Vec<DataSourceIntrospectionModel>>,
) -> Self
pub fn set_models( self, input: Option<Vec<DataSourceIntrospectionModel>>, ) -> Self
The array of DataSourceIntrospectionModel
objects.
sourcepub fn get_models(&self) -> &Option<Vec<DataSourceIntrospectionModel>>
pub fn get_models(&self) -> &Option<Vec<DataSourceIntrospectionModel>>
The array of DataSourceIntrospectionModel
objects.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
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 set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
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 get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &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.
sourcepub fn build(self) -> DataSourceIntrospectionResult
pub fn build(self) -> DataSourceIntrospectionResult
Consumes the builder and constructs a DataSourceIntrospectionResult
.
Trait Implementations§
source§impl Clone for DataSourceIntrospectionResultBuilder
impl Clone for DataSourceIntrospectionResultBuilder
source§fn clone(&self) -> DataSourceIntrospectionResultBuilder
fn clone(&self) -> DataSourceIntrospectionResultBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DataSourceIntrospectionResultBuilder
impl Default for DataSourceIntrospectionResultBuilder
source§fn default() -> DataSourceIntrospectionResultBuilder
fn default() -> DataSourceIntrospectionResultBuilder
source§impl PartialEq for DataSourceIntrospectionResultBuilder
impl PartialEq for DataSourceIntrospectionResultBuilder
source§fn eq(&self, other: &DataSourceIntrospectionResultBuilder) -> bool
fn eq(&self, other: &DataSourceIntrospectionResultBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DataSourceIntrospectionResultBuilder
Auto Trait Implementations§
impl Freeze for DataSourceIntrospectionResultBuilder
impl RefUnwindSafe for DataSourceIntrospectionResultBuilder
impl Send for DataSourceIntrospectionResultBuilder
impl Sync for DataSourceIntrospectionResultBuilder
impl Unpin for DataSourceIntrospectionResultBuilder
impl UnwindSafe for DataSourceIntrospectionResultBuilder
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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