Struct aws_sdk_transcribe::types::CallAnalyticsJobSummary  
source · #[non_exhaustive]pub struct CallAnalyticsJobSummary {
    pub call_analytics_job_name: Option<String>,
    pub creation_time: Option<DateTime>,
    pub start_time: Option<DateTime>,
    pub completion_time: Option<DateTime>,
    pub language_code: Option<LanguageCode>,
    pub call_analytics_job_status: Option<CallAnalyticsJobStatus>,
    pub failure_reason: Option<String>,
}Expand description
Provides detailed information about a specific Call Analytics job.
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.call_analytics_job_name: Option<String>The name of the Call Analytics job. Job names are case sensitive and must be unique within an Amazon Web Services account.
creation_time: Option<DateTime>The date and time the specified Call Analytics job request was made.
Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:32:58.761000-07:00 represents a transcription job that started processing at 12:32 PM UTC-7 on May 4, 2022.
start_time: Option<DateTime>The date and time your Call Analytics job began processing.
Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:32:58.789000-07:00 represents a transcription job that started processing at 12:32 PM UTC-7 on May 4, 2022.
completion_time: Option<DateTime>The date and time the specified Call Analytics job finished processing.
Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:33:13.922000-07:00 represents a transcription job that started processing at 12:33 PM UTC-7 on May 4, 2022.
language_code: Option<LanguageCode>The language code used to create your Call Analytics transcription.
call_analytics_job_status: Option<CallAnalyticsJobStatus>Provides the status of your Call Analytics job.
If the status is COMPLETED, the job is finished and you can find the results at the location specified in TranscriptFileUri (or RedactedTranscriptFileUri, if you requested transcript redaction). If the status is FAILED, FailureReason provides details on why your transcription job failed.
failure_reason: Option<String>If CallAnalyticsJobStatus is FAILED, FailureReason contains information about why the Call Analytics job failed. See also: Common Errors.
Implementations§
source§impl CallAnalyticsJobSummary
 
impl CallAnalyticsJobSummary
sourcepub fn call_analytics_job_name(&self) -> Option<&str>
 
pub fn call_analytics_job_name(&self) -> Option<&str>
The name of the Call Analytics job. Job names are case sensitive and must be unique within an Amazon Web Services account.
sourcepub fn creation_time(&self) -> Option<&DateTime>
 
pub fn creation_time(&self) -> Option<&DateTime>
The date and time the specified Call Analytics job request was made.
Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:32:58.761000-07:00 represents a transcription job that started processing at 12:32 PM UTC-7 on May 4, 2022.
sourcepub fn start_time(&self) -> Option<&DateTime>
 
pub fn start_time(&self) -> Option<&DateTime>
The date and time your Call Analytics job began processing.
Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:32:58.789000-07:00 represents a transcription job that started processing at 12:32 PM UTC-7 on May 4, 2022.
sourcepub fn completion_time(&self) -> Option<&DateTime>
 
pub fn completion_time(&self) -> Option<&DateTime>
The date and time the specified Call Analytics job finished processing.
Timestamps are in the format YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC. For example, 2022-05-04T12:33:13.922000-07:00 represents a transcription job that started processing at 12:33 PM UTC-7 on May 4, 2022.
sourcepub fn language_code(&self) -> Option<&LanguageCode>
 
pub fn language_code(&self) -> Option<&LanguageCode>
The language code used to create your Call Analytics transcription.
sourcepub fn call_analytics_job_status(&self) -> Option<&CallAnalyticsJobStatus>
 
pub fn call_analytics_job_status(&self) -> Option<&CallAnalyticsJobStatus>
Provides the status of your Call Analytics job.
If the status is COMPLETED, the job is finished and you can find the results at the location specified in TranscriptFileUri (or RedactedTranscriptFileUri, if you requested transcript redaction). If the status is FAILED, FailureReason provides details on why your transcription job failed.
sourcepub fn failure_reason(&self) -> Option<&str>
 
pub fn failure_reason(&self) -> Option<&str>
If CallAnalyticsJobStatus is FAILED, FailureReason contains information about why the Call Analytics job failed. See also: Common Errors.
source§impl CallAnalyticsJobSummary
 
impl CallAnalyticsJobSummary
sourcepub fn builder() -> CallAnalyticsJobSummaryBuilder
 
pub fn builder() -> CallAnalyticsJobSummaryBuilder
Creates a new builder-style object to manufacture CallAnalyticsJobSummary.
Trait Implementations§
source§impl Clone for CallAnalyticsJobSummary
 
impl Clone for CallAnalyticsJobSummary
source§fn clone(&self) -> CallAnalyticsJobSummary
 
fn clone(&self) -> CallAnalyticsJobSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CallAnalyticsJobSummary
 
impl Debug for CallAnalyticsJobSummary
source§impl PartialEq<CallAnalyticsJobSummary> for CallAnalyticsJobSummary
 
impl PartialEq<CallAnalyticsJobSummary> for CallAnalyticsJobSummary
source§fn eq(&self, other: &CallAnalyticsJobSummary) -> bool
 
fn eq(&self, other: &CallAnalyticsJobSummary) -> bool
self and other values to be equal, and is used
by ==.