#[non_exhaustive]pub struct DescribeEntityOutputBuilder { /* private fields */ }Expand description
A builder for DescribeEntityOutput.
Implementations§
Source§impl DescribeEntityOutputBuilder
impl DescribeEntityOutputBuilder
Sourcepub fn fields(self, input: Field) -> Self
pub fn fields(self, input: Field) -> Self
Appends an item to fields.
To override the contents of this collection use set_fields.
Describes the fields for that connector entity. This is the list of Field objects. Field is very similar to column in a database. The Field object has information about different properties associated with fields in the connector.
Sourcepub fn set_fields(self, input: Option<Vec<Field>>) -> Self
pub fn set_fields(self, input: Option<Vec<Field>>) -> Self
Describes the fields for that connector entity. This is the list of Field objects. Field is very similar to column in a database. The Field object has information about different properties associated with fields in the connector.
Sourcepub fn get_fields(&self) -> &Option<Vec<Field>>
pub fn get_fields(&self) -> &Option<Vec<Field>>
Describes the fields for that connector entity. This is the list of Field objects. Field is very similar to column in a database. The Field object has information about different properties associated with fields in the connector.
Sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A continuation token, present if the current segment is not the last.
Sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A continuation token, present if the current segment is not the last.
Sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A continuation token, present if the current segment is not the last.
Sourcepub fn build(self) -> DescribeEntityOutput
pub fn build(self) -> DescribeEntityOutput
Consumes the builder and constructs a DescribeEntityOutput.
Trait Implementations§
Source§impl Clone for DescribeEntityOutputBuilder
impl Clone for DescribeEntityOutputBuilder
Source§fn clone(&self) -> DescribeEntityOutputBuilder
fn clone(&self) -> DescribeEntityOutputBuilder
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 DescribeEntityOutputBuilder
impl Debug for DescribeEntityOutputBuilder
Source§impl Default for DescribeEntityOutputBuilder
impl Default for DescribeEntityOutputBuilder
Source§fn default() -> DescribeEntityOutputBuilder
fn default() -> DescribeEntityOutputBuilder
Source§impl PartialEq for DescribeEntityOutputBuilder
impl PartialEq for DescribeEntityOutputBuilder
Source§fn eq(&self, other: &DescribeEntityOutputBuilder) -> bool
fn eq(&self, other: &DescribeEntityOutputBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeEntityOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeEntityOutputBuilder
impl RefUnwindSafe for DescribeEntityOutputBuilder
impl Send for DescribeEntityOutputBuilder
impl Sync for DescribeEntityOutputBuilder
impl Unpin for DescribeEntityOutputBuilder
impl UnsafeUnpin for DescribeEntityOutputBuilder
impl UnwindSafe for DescribeEntityOutputBuilder
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