#[non_exhaustive]pub struct ListCallAnalyticsCategoriesInput {
pub next_token: Option<String>,
pub max_results: Option<i32>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.next_token: Option<String>
When included, NextToken
fetches the next set of categories if the result of the previous request was truncated.
max_results: Option<i32>
The maximum number of categories to return in each page of results. If there are fewer results than the value you specify, only the actual results are returned. If you do not specify a value, the default of 5 is used.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListCallAnalyticsCategories, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListCallAnalyticsCategories, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListCallAnalyticsCategories
>
Creates a new builder-style object to manufacture ListCallAnalyticsCategoriesInput
When included, NextToken
fetches the next set of categories if the result of the previous request was truncated.
The maximum number of categories to return in each page of results. If there are fewer results than the value you specify, only the actual results are returned. If you do not specify a value, the default of 5 is used.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for ListCallAnalyticsCategoriesInput
impl Sync for ListCallAnalyticsCategoriesInput
impl Unpin for ListCallAnalyticsCategoriesInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more