[−][src]Struct rusoto_transcribe::TranscribeClient
A client for the Amazon Transcribe Service API.
Methods
impl TranscribeClient
[src]
pub fn new(region: Region) -> TranscribeClient
[src]
Creates a client backed by the default tokio event loop.
The client will use the default credentials provider and tls client.
pub fn new_with<P, D>(
request_dispatcher: D,
credentials_provider: P,
region: Region
) -> TranscribeClient where
P: ProvideAwsCredentials + Send + Sync + 'static,
P::Future: Send,
D: DispatchSignedRequest + Send + Sync + 'static,
D::Future: Send,
[src]
request_dispatcher: D,
credentials_provider: P,
region: Region
) -> TranscribeClient where
P: ProvideAwsCredentials + Send + Sync + 'static,
P::Future: Send,
D: DispatchSignedRequest + Send + Sync + 'static,
D::Future: Send,
Trait Implementations
impl Transcribe for TranscribeClient
[src]
fn create_vocabulary(
&self,
input: CreateVocabularyRequest
) -> RusotoFuture<CreateVocabularyResponse, CreateVocabularyError>
[src]
&self,
input: CreateVocabularyRequest
) -> RusotoFuture<CreateVocabularyResponse, CreateVocabularyError>
Creates a new custom vocabulary that you can use to change the way Amazon Transcribe handles transcription of an audio file.
fn delete_transcription_job(
&self,
input: DeleteTranscriptionJobRequest
) -> RusotoFuture<(), DeleteTranscriptionJobError>
[src]
&self,
input: DeleteTranscriptionJobRequest
) -> RusotoFuture<(), DeleteTranscriptionJobError>
Deletes a previously submitted transcription job along with any other generated results such as the transcription, models, and so on.
fn delete_vocabulary(
&self,
input: DeleteVocabularyRequest
) -> RusotoFuture<(), DeleteVocabularyError>
[src]
&self,
input: DeleteVocabularyRequest
) -> RusotoFuture<(), DeleteVocabularyError>
Deletes a vocabulary from Amazon Transcribe.
fn get_transcription_job(
&self,
input: GetTranscriptionJobRequest
) -> RusotoFuture<GetTranscriptionJobResponse, GetTranscriptionJobError>
[src]
&self,
input: GetTranscriptionJobRequest
) -> RusotoFuture<GetTranscriptionJobResponse, GetTranscriptionJobError>
Returns information about a transcription job. To see the status of the job, check the TranscriptionJobStatus
field. If the status is COMPLETED
, the job is finished and you can find the results at the location specified in the TranscriptionFileUri
field.
fn get_vocabulary(
&self,
input: GetVocabularyRequest
) -> RusotoFuture<GetVocabularyResponse, GetVocabularyError>
[src]
&self,
input: GetVocabularyRequest
) -> RusotoFuture<GetVocabularyResponse, GetVocabularyError>
Gets information about a vocabulary.
fn list_transcription_jobs(
&self,
input: ListTranscriptionJobsRequest
) -> RusotoFuture<ListTranscriptionJobsResponse, ListTranscriptionJobsError>
[src]
&self,
input: ListTranscriptionJobsRequest
) -> RusotoFuture<ListTranscriptionJobsResponse, ListTranscriptionJobsError>
Lists transcription jobs with the specified status.
fn list_vocabularies(
&self,
input: ListVocabulariesRequest
) -> RusotoFuture<ListVocabulariesResponse, ListVocabulariesError>
[src]
&self,
input: ListVocabulariesRequest
) -> RusotoFuture<ListVocabulariesResponse, ListVocabulariesError>
Returns a list of vocabularies that match the specified criteria. If no criteria are specified, returns the entire list of vocabularies.
fn start_transcription_job(
&self,
input: StartTranscriptionJobRequest
) -> RusotoFuture<StartTranscriptionJobResponse, StartTranscriptionJobError>
[src]
&self,
input: StartTranscriptionJobRequest
) -> RusotoFuture<StartTranscriptionJobResponse, StartTranscriptionJobError>
Starts an asynchronous job to transcribe speech to text.
fn update_vocabulary(
&self,
input: UpdateVocabularyRequest
) -> RusotoFuture<UpdateVocabularyResponse, UpdateVocabularyError>
[src]
&self,
input: UpdateVocabularyRequest
) -> RusotoFuture<UpdateVocabularyResponse, UpdateVocabularyError>
Updates an existing vocabulary with new values. The UpdateVocabulary
operation overwrites all of the existing information with the values that you provide in the request.
impl Clone for TranscribeClient
[src]
fn clone(&self) -> TranscribeClient
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
Auto Trait Implementations
impl Send for TranscribeClient
impl Sync for TranscribeClient
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self