Struct aws_sdk_transcribe::input::ListCallAnalyticsJobsInput [−][src]
#[non_exhaustive]pub struct ListCallAnalyticsJobsInput {
pub status: Option<CallAnalyticsJobStatus>,
pub job_name_contains: Option<String>,
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.status: Option<CallAnalyticsJobStatus>When specified, returns only call analytics jobs with the specified status. Jobs are ordered by creation date, with the most recent jobs returned first. If you don't specify a status, Amazon Transcribe returns all analytics jobs ordered by creation date.
job_name_contains: Option<String>When specified, the jobs returned in the list are limited to jobs whose name contains the specified string.
next_token: Option<String>If you receive a truncated result in the previous request of
,
include NextToken to fetch the next set of jobs.
max_results: Option<i32>The maximum number of call analytics jobs 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<ListCallAnalyticsJobs, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListCallAnalyticsJobs, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListCallAnalyticsJobs>
Creates a new builder-style object to manufacture ListCallAnalyticsJobsInput
When specified, returns only call analytics jobs with the specified status. Jobs are ordered by creation date, with the most recent jobs returned first. If you don't specify a status, Amazon Transcribe returns all analytics jobs ordered by creation date.
When specified, the jobs returned in the list are limited to jobs whose name contains the specified string.
If you receive a truncated result in the previous request of
,
include NextToken to fetch the next set of jobs.
The maximum number of call analytics jobs 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 RefUnwindSafe for ListCallAnalyticsJobsInput
impl Send for ListCallAnalyticsJobsInput
impl Sync for ListCallAnalyticsJobsInput
impl Unpin for ListCallAnalyticsJobsInput
impl UnwindSafe for ListCallAnalyticsJobsInput
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