Class: Aws::TranscribeService::Types::ListCallAnalyticsJobsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::TranscribeService::Types::ListCallAnalyticsJobsResponse
- Defined in:
- gems/aws-sdk-transcribeservice/lib/aws-sdk-transcribeservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#call_analytics_job_summaries ⇒ Array<Types::CallAnalyticsJobSummary>
A list of objects containing summary information for a transcription job.
-
#next_token ⇒ String
The operation returns a page of jobs at a time.
-
#status ⇒ String
When specified, returns only call analytics jobs with that status.
Instance Attribute Details
#call_analytics_job_summaries ⇒ Array<Types::CallAnalyticsJobSummary>
A list of objects containing summary information for a transcription job.
1941 1942 1943 1944 1945 1946 1947 |
# File 'gems/aws-sdk-transcribeservice/lib/aws-sdk-transcribeservice/types.rb', line 1941 class ListCallAnalyticsJobsResponse < Struct.new( :status, :next_token, :call_analytics_job_summaries) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The operation returns a page of jobs at a time. The maximum size of
the page is set by the MaxResults
parameter. If there are more
jobs in the list than the page size, Amazon Transcribe returns the
NextPage
token. Include the token in your next request to the
operation to return next page of jobs.
1941 1942 1943 1944 1945 1946 1947 |
# File 'gems/aws-sdk-transcribeservice/lib/aws-sdk-transcribeservice/types.rb', line 1941 class ListCallAnalyticsJobsResponse < Struct.new( :status, :next_token, :call_analytics_job_summaries) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
When specified, returns only call analytics jobs with that 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 transcription jobs ordered by creation date.
1941 1942 1943 1944 1945 1946 1947 |
# File 'gems/aws-sdk-transcribeservice/lib/aws-sdk-transcribeservice/types.rb', line 1941 class ListCallAnalyticsJobsResponse < Struct.new( :status, :next_token, :call_analytics_job_summaries) SENSITIVE = [] include Aws::Structure end |