Struct aws_sdk_dynamodb::operation::list_contributor_insights::builders::ListContributorInsightsInputBuilder
source · #[non_exhaustive]pub struct ListContributorInsightsInputBuilder { /* private fields */ }
Expand description
A builder for ListContributorInsightsInput
.
Implementations§
source§impl ListContributorInsightsInputBuilder
impl ListContributorInsightsInputBuilder
sourcepub fn table_name(self, input: impl Into<String>) -> Self
pub fn table_name(self, input: impl Into<String>) -> Self
The name of the table. You can also provide the Amazon Resource Name (ARN) of the table in this parameter.
sourcepub fn set_table_name(self, input: Option<String>) -> Self
pub fn set_table_name(self, input: Option<String>) -> Self
The name of the table. You can also provide the Amazon Resource Name (ARN) of the table in this parameter.
sourcepub fn get_table_name(&self) -> &Option<String>
pub fn get_table_name(&self) -> &Option<String>
The name of the table. You can also provide the Amazon Resource Name (ARN) of the table in this parameter.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A token to for the desired page, if there is one.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A token to for the desired page, if there is one.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A token to for the desired page, if there is one.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
Maximum number of results to return per page.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
Maximum number of results to return per page.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
Maximum number of results to return per page.
sourcepub fn build(self) -> Result<ListContributorInsightsInput, BuildError>
pub fn build(self) -> Result<ListContributorInsightsInput, BuildError>
Consumes the builder and constructs a ListContributorInsightsInput
.
source§impl ListContributorInsightsInputBuilder
impl ListContributorInsightsInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<ListContributorInsightsOutput, SdkError<ListContributorInsightsError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<ListContributorInsightsOutput, SdkError<ListContributorInsightsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListContributorInsightsInputBuilder
impl Clone for ListContributorInsightsInputBuilder
source§fn clone(&self) -> ListContributorInsightsInputBuilder
fn clone(&self) -> ListContributorInsightsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListContributorInsightsInputBuilder
impl Default for ListContributorInsightsInputBuilder
source§fn default() -> ListContributorInsightsInputBuilder
fn default() -> ListContributorInsightsInputBuilder
source§impl PartialEq for ListContributorInsightsInputBuilder
impl PartialEq for ListContributorInsightsInputBuilder
source§fn eq(&self, other: &ListContributorInsightsInputBuilder) -> bool
fn eq(&self, other: &ListContributorInsightsInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListContributorInsightsInputBuilder
Auto Trait Implementations§
impl Freeze for ListContributorInsightsInputBuilder
impl RefUnwindSafe for ListContributorInsightsInputBuilder
impl Send for ListContributorInsightsInputBuilder
impl Sync for ListContributorInsightsInputBuilder
impl Unpin for ListContributorInsightsInputBuilder
impl UnwindSafe for ListContributorInsightsInputBuilder
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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