Struct aws_sdk_honeycode::input::ListTablesInput
source · [−]#[non_exhaustive]pub struct ListTablesInput { /* private fields */ }
Implementations
sourceimpl ListTablesInput
impl ListTablesInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListTables, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListTables, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListTables
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListTablesInput
.
sourceimpl ListTablesInput
impl ListTablesInput
sourcepub fn workbook_id(&self) -> Option<&str>
pub fn workbook_id(&self) -> Option<&str>
The ID of the workbook whose tables are being retrieved.
If a workbook with the specified id could not be found, this API throws ResourceNotFoundException.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of tables to return in each page of the results.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
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.
Trait Implementations
sourceimpl Clone for ListTablesInput
impl Clone for ListTablesInput
sourcefn clone(&self) -> ListTablesInput
fn clone(&self) -> ListTablesInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ListTablesInput
impl Debug for ListTablesInput
sourceimpl PartialEq<ListTablesInput> for ListTablesInput
impl PartialEq<ListTablesInput> for ListTablesInput
sourcefn eq(&self, other: &ListTablesInput) -> bool
fn eq(&self, other: &ListTablesInput) -> bool
impl StructuralPartialEq for ListTablesInput
Auto Trait Implementations
impl RefUnwindSafe for ListTablesInput
impl Send for ListTablesInput
impl Sync for ListTablesInput
impl Unpin for ListTablesInput
impl UnwindSafe for ListTablesInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more