/* * Copyright 2010-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ package com.amazonaws.services.transcribe.model; import java.io.Serializable; /** *
* Provides detailed information about a specific transcription job. *
*/ public class TranscriptionJobSummary implements Serializable { /** ** The name of the transcription job. Job names are case sensitive and must * be unique within an Amazon Web Services account. *
*
* Constraints:
* Length: 1 - 200
* Pattern: ^[0-9a-zA-Z._-]+
*/
private String transcriptionJobName;
/**
*
* The date and time the specified transcription 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.
*
* The date and time your transcription 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.
*
* The date and time the specified transcription 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.
*
* The language code used to create your transcription. *
*
* Constraints:
* Allowed Values: af-ZA, ar-AE, ar-SA, da-DK, de-CH, de-DE, en-AB,
* en-AU, en-GB, en-IE, en-IN, en-US, en-WL, es-ES, es-US, fa-IR, fr-CA,
* fr-FR, he-IL, hi-IN, id-ID, it-IT, ja-JP, ko-KR, ms-MY, nl-NL, pt-BR,
* pt-PT, ru-RU, ta-IN, te-IN, tr-TR, zh-CN, zh-TW, th-TH, en-ZA, en-NZ,
* vi-VN, sv-SE
*/
private String languageCode;
/**
*
* Provides the status of your transcription 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.
*
* Constraints:
* Allowed Values: QUEUED, IN_PROGRESS, FAILED, COMPLETED
*/
private String transcriptionJobStatus;
/**
*
* If TranscriptionJobStatus
is FAILED
,
* FailureReason
contains information about why the
* transcription job failed. See also: Common Errors.
*
* Indicates where the specified transcription output is stored. *
*
* If the value is CUSTOMER_BUCKET
, the location is the Amazon
* S3 bucket you specified using the OutputBucketName
parameter
* in your request. If you also included OutputKey
in your
* request, your output is located in the path you specified in your
* request.
*
* If the value is SERVICE_BUCKET
, the location is a
* service-managed Amazon S3 bucket. To access a transcript stored in a
* service-managed bucket, use the URI shown in the
* TranscriptFileUri
or RedactedTranscriptFileUri
* field.
*
* Constraints:
* Allowed Values: CUSTOMER_BUCKET, SERVICE_BUCKET
*/
private String outputLocationType;
/**
*
* The content redaction settings of the transcription job. *
*/ private ContentRedaction contentRedaction; /** ** Provides the name of the custom language model that was included in the * specified transcription job. *
*
* Only use ModelSettings
with the
* LanguageModelName
sub-parameter if you're not using
* automatic language identification (
* ). If using
LanguageIdSettings
in your request, this
* parameter contains a LanguageModelName
sub-parameter.
*
* Indicates whether automatic language identification was enabled (
* TRUE
) for the specified transcription job.
*
* Indicates whether automatic multi-language identification was enabled (
* TRUE
) for the specified transcription job.
*
* The confidence score associated with the language identified in your * media file. *
** Confidence scores are values between 0 and 1; a larger value indicates a * higher probability that the identified language correctly matches the * language spoken in your media. *
*/ private Float identifiedLanguageScore; /** *
* The language codes used to create your transcription job. This parameter
* is used with multi-language identification. For single-language
* identification, the singular version of this parameter,
* LanguageCode
, is present.
*
* The name of the transcription job. Job names are case sensitive and must * be unique within an Amazon Web Services account. *
*
* Constraints:
* Length: 1 - 200
* Pattern: ^[0-9a-zA-Z._-]+
*
* @return
* The name of the transcription job. Job names are case sensitive * and must be unique within an Amazon Web Services account. *
*/ public String getTranscriptionJobName() { return transcriptionJobName; } /** ** The name of the transcription job. Job names are case sensitive and must * be unique within an Amazon Web Services account. *
*
* Constraints:
* Length: 1 - 200
* Pattern: ^[0-9a-zA-Z._-]+
*
* @param transcriptionJobName
* The name of the transcription job. Job names are case * sensitive and must be unique within an Amazon Web Services * account. *
*/ public void setTranscriptionJobName(String transcriptionJobName) { this.transcriptionJobName = transcriptionJobName; } /** ** The name of the transcription job. Job names are case sensitive and must * be unique within an Amazon Web Services account. *
** Returns a reference to this object so that method calls can be chained * together. *
* Constraints:
* Length: 1 - 200
* Pattern: ^[0-9a-zA-Z._-]+
*
* @param transcriptionJobName
* The name of the transcription job. Job names are case * sensitive and must be unique within an Amazon Web Services * account. *
* @return A reference to this updated object so that method calls can be * chained together. */ public TranscriptionJobSummary withTranscriptionJobName(String transcriptionJobName) { this.transcriptionJobName = transcriptionJobName; return this; } /** ** The date and time the specified transcription 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.
*
* The date and time the specified transcription 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.
*
* The date and time the specified transcription 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.
*
* The date and time the specified transcription 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.
*
* The date and time the specified transcription 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.
*
* Returns a reference to this object so that method calls can be chained * together. * * @param creationTime
* The date and time the specified transcription 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.
*
* The date and time your transcription 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.
*
* The date and time your transcription 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.
*
* The date and time your transcription 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.
*
* The date and time your transcription 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.
*
* The date and time your transcription 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.
*
* Returns a reference to this object so that method calls can be chained * together. * * @param startTime
* The date and time your transcription 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.
*
* The date and time the specified transcription 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.
*
* The date and time the specified transcription 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.
*
* The date and time the specified transcription 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.
*
* The date and time the specified transcription 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.
*
* The date and time the specified transcription 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.
*
* Returns a reference to this object so that method calls can be chained * together. * * @param completionTime
* The date and time the specified transcription 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.
*
* The language code used to create your transcription. *
*
* Constraints:
* Allowed Values: af-ZA, ar-AE, ar-SA, da-DK, de-CH, de-DE, en-AB,
* en-AU, en-GB, en-IE, en-IN, en-US, en-WL, es-ES, es-US, fa-IR, fr-CA,
* fr-FR, he-IL, hi-IN, id-ID, it-IT, ja-JP, ko-KR, ms-MY, nl-NL, pt-BR,
* pt-PT, ru-RU, ta-IN, te-IN, tr-TR, zh-CN, zh-TW, th-TH, en-ZA, en-NZ,
* vi-VN, sv-SE
*
* @return
* The language code used to create your transcription. *
* @see LanguageCode */ public String getLanguageCode() { return languageCode; } /** ** The language code used to create your transcription. *
*
* Constraints:
* Allowed Values: af-ZA, ar-AE, ar-SA, da-DK, de-CH, de-DE, en-AB,
* en-AU, en-GB, en-IE, en-IN, en-US, en-WL, es-ES, es-US, fa-IR, fr-CA,
* fr-FR, he-IL, hi-IN, id-ID, it-IT, ja-JP, ko-KR, ms-MY, nl-NL, pt-BR,
* pt-PT, ru-RU, ta-IN, te-IN, tr-TR, zh-CN, zh-TW, th-TH, en-ZA, en-NZ,
* vi-VN, sv-SE
*
* @param languageCode
* The language code used to create your transcription. *
* @see LanguageCode */ public void setLanguageCode(String languageCode) { this.languageCode = languageCode; } /** ** The language code used to create your transcription. *
** Returns a reference to this object so that method calls can be chained * together. *
* Constraints:
* Allowed Values: af-ZA, ar-AE, ar-SA, da-DK, de-CH, de-DE, en-AB,
* en-AU, en-GB, en-IE, en-IN, en-US, en-WL, es-ES, es-US, fa-IR, fr-CA,
* fr-FR, he-IL, hi-IN, id-ID, it-IT, ja-JP, ko-KR, ms-MY, nl-NL, pt-BR,
* pt-PT, ru-RU, ta-IN, te-IN, tr-TR, zh-CN, zh-TW, th-TH, en-ZA, en-NZ,
* vi-VN, sv-SE
*
* @param languageCode
* The language code used to create your transcription. *
* @return A reference to this updated object so that method calls can be * chained together. * @see LanguageCode */ public TranscriptionJobSummary withLanguageCode(String languageCode) { this.languageCode = languageCode; return this; } /** ** The language code used to create your transcription. *
*
* Constraints:
* Allowed Values: af-ZA, ar-AE, ar-SA, da-DK, de-CH, de-DE, en-AB,
* en-AU, en-GB, en-IE, en-IN, en-US, en-WL, es-ES, es-US, fa-IR, fr-CA,
* fr-FR, he-IL, hi-IN, id-ID, it-IT, ja-JP, ko-KR, ms-MY, nl-NL, pt-BR,
* pt-PT, ru-RU, ta-IN, te-IN, tr-TR, zh-CN, zh-TW, th-TH, en-ZA, en-NZ,
* vi-VN, sv-SE
*
* @param languageCode
* The language code used to create your transcription. *
* @see LanguageCode */ public void setLanguageCode(LanguageCode languageCode) { this.languageCode = languageCode.toString(); } /** ** The language code used to create your transcription. *
** Returns a reference to this object so that method calls can be chained * together. *
* Constraints:
* Allowed Values: af-ZA, ar-AE, ar-SA, da-DK, de-CH, de-DE, en-AB,
* en-AU, en-GB, en-IE, en-IN, en-US, en-WL, es-ES, es-US, fa-IR, fr-CA,
* fr-FR, he-IL, hi-IN, id-ID, it-IT, ja-JP, ko-KR, ms-MY, nl-NL, pt-BR,
* pt-PT, ru-RU, ta-IN, te-IN, tr-TR, zh-CN, zh-TW, th-TH, en-ZA, en-NZ,
* vi-VN, sv-SE
*
* @param languageCode
* The language code used to create your transcription. *
* @return A reference to this updated object so that method calls can be * chained together. * @see LanguageCode */ public TranscriptionJobSummary withLanguageCode(LanguageCode languageCode) { this.languageCode = languageCode.toString(); return this; } /** ** Provides the status of your transcription 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.
*
* Constraints:
* Allowed Values: QUEUED, IN_PROGRESS, FAILED, COMPLETED
*
* @return
* Provides the status of your transcription 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.
*
* Provides the status of your transcription 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.
*
* Constraints:
* Allowed Values: QUEUED, IN_PROGRESS, FAILED, COMPLETED
*
* @param transcriptionJobStatus
* Provides the status of your transcription 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.
*
* Provides the status of your transcription 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.
*
* Returns a reference to this object so that method calls can be chained * together. *
* Constraints:
* Allowed Values: QUEUED, IN_PROGRESS, FAILED, COMPLETED
*
* @param transcriptionJobStatus
* Provides the status of your transcription 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.
*
* Provides the status of your transcription 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.
*
* Constraints:
* Allowed Values: QUEUED, IN_PROGRESS, FAILED, COMPLETED
*
* @param transcriptionJobStatus
* Provides the status of your transcription 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.
*
* Provides the status of your transcription 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.
*
* Returns a reference to this object so that method calls can be chained * together. *
* Constraints:
* Allowed Values: QUEUED, IN_PROGRESS, FAILED, COMPLETED
*
* @param transcriptionJobStatus
* Provides the status of your transcription 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.
*
* If TranscriptionJobStatus
is FAILED
,
* FailureReason
contains information about why the
* transcription job failed. See also: Common Errors.
*
* If TranscriptionJobStatus
is FAILED
,
* FailureReason
contains information about why the
* transcription job failed. See also: Common Errors.
*
* If TranscriptionJobStatus
is FAILED
,
* FailureReason
contains information about why the
* transcription job failed. See also: Common Errors.
*
* If TranscriptionJobStatus
is FAILED
,
* FailureReason
contains information about why the
* transcription job failed. See also: Common Errors.
*
* If TranscriptionJobStatus
is FAILED
,
* FailureReason
contains information about why the
* transcription job failed. See also: Common Errors.
*
* Returns a reference to this object so that method calls can be chained * together. * * @param failureReason
* If TranscriptionJobStatus
is FAILED
,
* FailureReason
contains information about why the
* transcription job failed. See also: Common Errors.
*
* Indicates where the specified transcription output is stored. *
*
* If the value is CUSTOMER_BUCKET
, the location is the Amazon
* S3 bucket you specified using the OutputBucketName
parameter
* in your request. If you also included OutputKey
in your
* request, your output is located in the path you specified in your
* request.
*
* If the value is SERVICE_BUCKET
, the location is a
* service-managed Amazon S3 bucket. To access a transcript stored in a
* service-managed bucket, use the URI shown in the
* TranscriptFileUri
or RedactedTranscriptFileUri
* field.
*
* Constraints:
* Allowed Values: CUSTOMER_BUCKET, SERVICE_BUCKET
*
* @return
* Indicates where the specified transcription output is stored. *
*
* If the value is CUSTOMER_BUCKET
, the location is the
* Amazon S3 bucket you specified using the
* OutputBucketName
parameter in your request. If you
* also included OutputKey
in your request, your output
* is located in the path you specified in your request.
*
* If the value is SERVICE_BUCKET
, the location is a
* service-managed Amazon S3 bucket. To access a transcript stored
* in a service-managed bucket, use the URI shown in the
* TranscriptFileUri
or
* RedactedTranscriptFileUri
field.
*
* Indicates where the specified transcription output is stored. *
*
* If the value is CUSTOMER_BUCKET
, the location is the Amazon
* S3 bucket you specified using the OutputBucketName
parameter
* in your request. If you also included OutputKey
in your
* request, your output is located in the path you specified in your
* request.
*
* If the value is SERVICE_BUCKET
, the location is a
* service-managed Amazon S3 bucket. To access a transcript stored in a
* service-managed bucket, use the URI shown in the
* TranscriptFileUri
or RedactedTranscriptFileUri
* field.
*
* Constraints:
* Allowed Values: CUSTOMER_BUCKET, SERVICE_BUCKET
*
* @param outputLocationType
* Indicates where the specified transcription output is stored. *
*
* If the value is CUSTOMER_BUCKET
, the location is
* the Amazon S3 bucket you specified using the
* OutputBucketName
parameter in your request. If
* you also included OutputKey
in your request, your
* output is located in the path you specified in your request.
*
* If the value is SERVICE_BUCKET
, the location is a
* service-managed Amazon S3 bucket. To access a transcript
* stored in a service-managed bucket, use the URI shown in the
* TranscriptFileUri
or
* RedactedTranscriptFileUri
field.
*
* Indicates where the specified transcription output is stored. *
*
* If the value is CUSTOMER_BUCKET
, the location is the Amazon
* S3 bucket you specified using the OutputBucketName
parameter
* in your request. If you also included OutputKey
in your
* request, your output is located in the path you specified in your
* request.
*
* If the value is SERVICE_BUCKET
, the location is a
* service-managed Amazon S3 bucket. To access a transcript stored in a
* service-managed bucket, use the URI shown in the
* TranscriptFileUri
or RedactedTranscriptFileUri
* field.
*
* Returns a reference to this object so that method calls can be chained * together. *
* Constraints:
* Allowed Values: CUSTOMER_BUCKET, SERVICE_BUCKET
*
* @param outputLocationType
* Indicates where the specified transcription output is stored. *
*
* If the value is CUSTOMER_BUCKET
, the location is
* the Amazon S3 bucket you specified using the
* OutputBucketName
parameter in your request. If
* you also included OutputKey
in your request, your
* output is located in the path you specified in your request.
*
* If the value is SERVICE_BUCKET
, the location is a
* service-managed Amazon S3 bucket. To access a transcript
* stored in a service-managed bucket, use the URI shown in the
* TranscriptFileUri
or
* RedactedTranscriptFileUri
field.
*
* Indicates where the specified transcription output is stored. *
*
* If the value is CUSTOMER_BUCKET
, the location is the Amazon
* S3 bucket you specified using the OutputBucketName
parameter
* in your request. If you also included OutputKey
in your
* request, your output is located in the path you specified in your
* request.
*
* If the value is SERVICE_BUCKET
, the location is a
* service-managed Amazon S3 bucket. To access a transcript stored in a
* service-managed bucket, use the URI shown in the
* TranscriptFileUri
or RedactedTranscriptFileUri
* field.
*
* Constraints:
* Allowed Values: CUSTOMER_BUCKET, SERVICE_BUCKET
*
* @param outputLocationType
* Indicates where the specified transcription output is stored. *
*
* If the value is CUSTOMER_BUCKET
, the location is
* the Amazon S3 bucket you specified using the
* OutputBucketName
parameter in your request. If
* you also included OutputKey
in your request, your
* output is located in the path you specified in your request.
*
* If the value is SERVICE_BUCKET
, the location is a
* service-managed Amazon S3 bucket. To access a transcript
* stored in a service-managed bucket, use the URI shown in the
* TranscriptFileUri
or
* RedactedTranscriptFileUri
field.
*
* Indicates where the specified transcription output is stored. *
*
* If the value is CUSTOMER_BUCKET
, the location is the Amazon
* S3 bucket you specified using the OutputBucketName
parameter
* in your request. If you also included OutputKey
in your
* request, your output is located in the path you specified in your
* request.
*
* If the value is SERVICE_BUCKET
, the location is a
* service-managed Amazon S3 bucket. To access a transcript stored in a
* service-managed bucket, use the URI shown in the
* TranscriptFileUri
or RedactedTranscriptFileUri
* field.
*
* Returns a reference to this object so that method calls can be chained * together. *
* Constraints:
* Allowed Values: CUSTOMER_BUCKET, SERVICE_BUCKET
*
* @param outputLocationType
* Indicates where the specified transcription output is stored. *
*
* If the value is CUSTOMER_BUCKET
, the location is
* the Amazon S3 bucket you specified using the
* OutputBucketName
parameter in your request. If
* you also included OutputKey
in your request, your
* output is located in the path you specified in your request.
*
* If the value is SERVICE_BUCKET
, the location is a
* service-managed Amazon S3 bucket. To access a transcript
* stored in a service-managed bucket, use the URI shown in the
* TranscriptFileUri
or
* RedactedTranscriptFileUri
field.
*
* The content redaction settings of the transcription job. *
* * @return* The content redaction settings of the transcription job. *
*/ public ContentRedaction getContentRedaction() { return contentRedaction; } /** ** The content redaction settings of the transcription job. *
* * @param contentRedaction* The content redaction settings of the transcription job. *
*/ public void setContentRedaction(ContentRedaction contentRedaction) { this.contentRedaction = contentRedaction; } /** ** The content redaction settings of the transcription job. *
** Returns a reference to this object so that method calls can be chained * together. * * @param contentRedaction
* The content redaction settings of the transcription job. *
* @return A reference to this updated object so that method calls can be * chained together. */ public TranscriptionJobSummary withContentRedaction(ContentRedaction contentRedaction) { this.contentRedaction = contentRedaction; return this; } /** ** Provides the name of the custom language model that was included in the * specified transcription job. *
*
* Only use ModelSettings
with the
* LanguageModelName
sub-parameter if you're not using
* automatic language identification (
* ). If using
LanguageIdSettings
in your request, this
* parameter contains a LanguageModelName
sub-parameter.
*
* Provides the name of the custom language model that was included * in the specified transcription job. *
*
* Only use ModelSettings
with the
* LanguageModelName
sub-parameter if you're not
* using automatic language identification (
* ). If using
LanguageIdSettings
in your
* request, this parameter contains a LanguageModelName
* sub-parameter.
*
* Provides the name of the custom language model that was included in the * specified transcription job. *
*
* Only use ModelSettings
with the
* LanguageModelName
sub-parameter if you're not using
* automatic language identification (
* ). If using
LanguageIdSettings
in your request, this
* parameter contains a LanguageModelName
sub-parameter.
*
* Provides the name of the custom language model that was * included in the specified transcription job. *
*
* Only use ModelSettings
with the
* LanguageModelName
sub-parameter if you're
* not using automatic language identification (
* ). If using
LanguageIdSettings
in your
* request, this parameter contains a
* LanguageModelName
sub-parameter.
*
* Provides the name of the custom language model that was included in the * specified transcription job. *
*
* Only use ModelSettings
with the
* LanguageModelName
sub-parameter if you're not using
* automatic language identification (
* ). If using
LanguageIdSettings
in your request, this
* parameter contains a LanguageModelName
sub-parameter.
*
* Returns a reference to this object so that method calls can be chained * together. * * @param modelSettings
* Provides the name of the custom language model that was * included in the specified transcription job. *
*
* Only use ModelSettings
with the
* LanguageModelName
sub-parameter if you're
* not using automatic language identification (
* ). If using
LanguageIdSettings
in your
* request, this parameter contains a
* LanguageModelName
sub-parameter.
*
* Indicates whether automatic language identification was enabled (
* TRUE
) for the specified transcription job.
*
* Indicates whether automatic language identification was enabled (
* TRUE
) for the specified transcription job.
*
* Indicates whether automatic language identification was enabled (
* TRUE
) for the specified transcription job.
*
* Indicates whether automatic language identification was enabled (
* TRUE
) for the specified transcription job.
*
* Indicates whether automatic language identification was enabled (
* TRUE
) for the specified transcription job.
*
* Indicates whether automatic language identification was
* enabled (TRUE
) for the specified transcription
* job.
*
* Indicates whether automatic language identification was enabled (
* TRUE
) for the specified transcription job.
*
* Returns a reference to this object so that method calls can be chained * together. * * @param identifyLanguage
* Indicates whether automatic language identification was
* enabled (TRUE
) for the specified transcription
* job.
*
* Indicates whether automatic multi-language identification was enabled (
* TRUE
) for the specified transcription job.
*
* Indicates whether automatic multi-language identification was
* enabled (TRUE
) for the specified transcription job.
*
* Indicates whether automatic multi-language identification was enabled (
* TRUE
) for the specified transcription job.
*
* Indicates whether automatic multi-language identification was
* enabled (TRUE
) for the specified transcription job.
*
* Indicates whether automatic multi-language identification was enabled (
* TRUE
) for the specified transcription job.
*
* Indicates whether automatic multi-language identification was
* enabled (TRUE
) for the specified transcription
* job.
*
* Indicates whether automatic multi-language identification was enabled (
* TRUE
) for the specified transcription job.
*
* Returns a reference to this object so that method calls can be chained * together. * * @param identifyMultipleLanguages
* Indicates whether automatic multi-language identification was
* enabled (TRUE
) for the specified transcription
* job.
*
* The confidence score associated with the language identified in your * media file. *
** Confidence scores are values between 0 and 1; a larger value indicates a * higher probability that the identified language correctly matches the * language spoken in your media. *
* * @return* The confidence score associated with the language identified in * your media file. *
** Confidence scores are values between 0 and 1; a larger value * indicates a higher probability that the identified language * correctly matches the language spoken in your media. *
*/ public Float getIdentifiedLanguageScore() { return identifiedLanguageScore; } /** ** The confidence score associated with the language identified in your * media file. *
** Confidence scores are values between 0 and 1; a larger value indicates a * higher probability that the identified language correctly matches the * language spoken in your media. *
* * @param identifiedLanguageScore* The confidence score associated with the language identified * in your media file. *
** Confidence scores are values between 0 and 1; a larger value * indicates a higher probability that the identified language * correctly matches the language spoken in your media. *
*/ public void setIdentifiedLanguageScore(Float identifiedLanguageScore) { this.identifiedLanguageScore = identifiedLanguageScore; } /** ** The confidence score associated with the language identified in your * media file. *
** Confidence scores are values between 0 and 1; a larger value indicates a * higher probability that the identified language correctly matches the * language spoken in your media. *
** Returns a reference to this object so that method calls can be chained * together. * * @param identifiedLanguageScore
* The confidence score associated with the language identified * in your media file. *
** Confidence scores are values between 0 and 1; a larger value * indicates a higher probability that the identified language * correctly matches the language spoken in your media. *
* @return A reference to this updated object so that method calls can be * chained together. */ public TranscriptionJobSummary withIdentifiedLanguageScore(Float identifiedLanguageScore) { this.identifiedLanguageScore = identifiedLanguageScore; return this; } /** *
* The language codes used to create your transcription job. This parameter
* is used with multi-language identification. For single-language
* identification, the singular version of this parameter,
* LanguageCode
, is present.
*
* The language codes used to create your transcription job. This
* parameter is used with multi-language identification. For
* single-language identification, the singular version of this
* parameter, LanguageCode
, is present.
*
* The language codes used to create your transcription job. This parameter
* is used with multi-language identification. For single-language
* identification, the singular version of this parameter,
* LanguageCode
, is present.
*
* The language codes used to create your transcription job. This
* parameter is used with multi-language identification. For
* single-language identification, the singular version of this
* parameter, LanguageCode
, is present.
*
* The language codes used to create your transcription job. This parameter
* is used with multi-language identification. For single-language
* identification, the singular version of this parameter,
* LanguageCode
, is present.
*
* Returns a reference to this object so that method calls can be chained * together. * * @param languageCodes
* The language codes used to create your transcription job. This
* parameter is used with multi-language identification. For
* single-language identification, the singular version of this
* parameter, LanguageCode
, is present.
*
* The language codes used to create your transcription job. This parameter
* is used with multi-language identification. For single-language
* identification, the singular version of this parameter,
* LanguageCode
, is present.
*
* Returns a reference to this object so that method calls can be chained * together. * * @param languageCodes
* The language codes used to create your transcription job. This
* parameter is used with multi-language identification. For
* single-language identification, the singular version of this
* parameter, LanguageCode
, is present.
*