Struct aws_sdk_honeycode::operation::list_table_columns::builders::ListTableColumnsInputBuilder
source · #[non_exhaustive]pub struct ListTableColumnsInputBuilder { /* private fields */ }Expand description
A builder for ListTableColumnsInput.
Implementations§
source§impl ListTableColumnsInputBuilder
impl ListTableColumnsInputBuilder
sourcepub fn workbook_id(self, input: impl Into<String>) -> Self
pub fn workbook_id(self, input: impl Into<String>) -> Self
The ID of the workbook that contains the table whose columns are being retrieved.
If a workbook with the specified id could not be found, this API throws ResourceNotFoundException.
This field is required.sourcepub fn set_workbook_id(self, input: Option<String>) -> Self
pub fn set_workbook_id(self, input: Option<String>) -> Self
The ID of the workbook that contains the table whose columns are being retrieved.
If a workbook with the specified id could not be found, this API throws ResourceNotFoundException.
sourcepub fn get_workbook_id(&self) -> &Option<String>
pub fn get_workbook_id(&self) -> &Option<String>
The ID of the workbook that contains the table whose columns are being retrieved.
If a workbook with the specified id could not be found, this API throws ResourceNotFoundException.
sourcepub fn table_id(self, input: impl Into<String>) -> Self
pub fn table_id(self, input: impl Into<String>) -> Self
The ID of the table whose columns are being retrieved.
If a table with the specified id could not be found, this API throws ResourceNotFoundException.
This field is required.sourcepub fn set_table_id(self, input: Option<String>) -> Self
pub fn set_table_id(self, input: Option<String>) -> Self
The ID of the table whose columns are being retrieved.
If a table with the specified id could not be found, this API throws ResourceNotFoundException.
sourcepub fn get_table_id(&self) -> &Option<String>
pub fn get_table_id(&self) -> &Option<String>
The ID of the table whose columns are being retrieved.
If a table with the specified id could not be found, this API throws ResourceNotFoundException.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
This parameter is optional. If a nextToken is not specified, the API returns the first page of data.
Pagination tokens expire after 1 hour. If you use a token that was returned more than an hour back, the API will throw ValidationException.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
This parameter is optional. If a nextToken is not specified, the API returns the first page of data.
Pagination tokens expire after 1 hour. If you use a token that was returned more than an hour back, the API will throw ValidationException.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
This parameter is optional. If a nextToken is not specified, the API returns the first page of data.
Pagination tokens expire after 1 hour. If you use a token that was returned more than an hour back, the API will throw ValidationException.
sourcepub fn build(self) -> Result<ListTableColumnsInput, BuildError>
pub fn build(self) -> Result<ListTableColumnsInput, BuildError>
Consumes the builder and constructs a ListTableColumnsInput.
source§impl ListTableColumnsInputBuilder
impl ListTableColumnsInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListTableColumnsOutput, SdkError<ListTableColumnsError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListTableColumnsOutput, SdkError<ListTableColumnsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListTableColumnsInputBuilder
impl Clone for ListTableColumnsInputBuilder
source§fn clone(&self) -> ListTableColumnsInputBuilder
fn clone(&self) -> ListTableColumnsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListTableColumnsInputBuilder
impl Debug for ListTableColumnsInputBuilder
source§impl Default for ListTableColumnsInputBuilder
impl Default for ListTableColumnsInputBuilder
source§fn default() -> ListTableColumnsInputBuilder
fn default() -> ListTableColumnsInputBuilder
source§impl PartialEq for ListTableColumnsInputBuilder
impl PartialEq for ListTableColumnsInputBuilder
source§fn eq(&self, other: &ListTableColumnsInputBuilder) -> bool
fn eq(&self, other: &ListTableColumnsInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListTableColumnsInputBuilder
Auto Trait Implementations§
impl Freeze for ListTableColumnsInputBuilder
impl RefUnwindSafe for ListTableColumnsInputBuilder
impl Send for ListTableColumnsInputBuilder
impl Sync for ListTableColumnsInputBuilder
impl Unpin for ListTableColumnsInputBuilder
impl UnwindSafe for ListTableColumnsInputBuilder
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