#[non_exhaustive]pub struct ListCallAnalyticsJobsInput { /* private fields */ }Implementations§
source§impl ListCallAnalyticsJobsInput
impl ListCallAnalyticsJobsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListCallAnalyticsJobs, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListCallAnalyticsJobs, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListCallAnalyticsJobs>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListCallAnalyticsJobsInput.
source§impl ListCallAnalyticsJobsInput
impl ListCallAnalyticsJobsInput
sourcepub fn status(&self) -> Option<&CallAnalyticsJobStatus>
pub fn status(&self) -> Option<&CallAnalyticsJobStatus>
Returns only Call Analytics jobs with the specified status. Jobs are ordered by creation date, with the newest job first. If you don't include Status, all Call Analytics jobs are returned.
sourcepub fn job_name_contains(&self) -> Option<&str>
pub fn job_name_contains(&self) -> Option<&str>
Returns only the Call Analytics jobs that contain the specified string. The search is not case sensitive.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If your ListCallAnalyticsJobs request returns more results than can be displayed, NextToken is displayed in the response with an associated string. To get the next page of results, copy this string and repeat your request, including NextToken with the value of the copied string. Repeat as needed to view all your results.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of Call Analytics jobs to return in each page of results. If there are fewer results than the value that you specify, only the actual results are returned. If you don't specify a value, a default of 5 is used.
Trait Implementations§
source§impl Clone for ListCallAnalyticsJobsInput
impl Clone for ListCallAnalyticsJobsInput
source§fn clone(&self) -> ListCallAnalyticsJobsInput
fn clone(&self) -> ListCallAnalyticsJobsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListCallAnalyticsJobsInput
impl Debug for ListCallAnalyticsJobsInput
source§impl PartialEq<ListCallAnalyticsJobsInput> for ListCallAnalyticsJobsInput
impl PartialEq<ListCallAnalyticsJobsInput> for ListCallAnalyticsJobsInput
source§fn eq(&self, other: &ListCallAnalyticsJobsInput) -> bool
fn eq(&self, other: &ListCallAnalyticsJobsInput) -> bool
self and other values to be equal, and is used
by ==.