/* * 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; public class GetVocabularyResult implements Serializable { /** *

* The name of the custom vocabulary you requested information about. *

*

* Constraints:
* Length: 1 - 200
* Pattern: ^[0-9a-zA-Z._-]+
*/ private String vocabularyName; /** *

* The language code you selected for your custom vocabulary. *

*

* 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; /** *

* The processing state of your custom vocabulary. If the state is * READY, you can use the custom vocabulary in a * StartTranscriptionJob request. *

*

* Constraints:
* Allowed Values: PENDING, READY, FAILED */ private String vocabularyState; /** *

* The date and time the specified custom vocabulary was last modified. *

*

* 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 12:32 PM UTC-7 * on May 4, 2022. *

*/ private java.util.Date lastModifiedTime; /** *

* If VocabularyState is FAILED, * FailureReason contains information about why the custom * vocabulary request failed. See also: Common Errors. *

*/ private String failureReason; /** *

* The S3 location where the custom vocabulary is stored; use this URI to * view or download the custom vocabulary. *

*

* Constraints:
* Length: 1 - 2000
* Pattern: (s3://|http(s*)://).+
*/ private String downloadUri; /** *

* The name of the custom vocabulary you requested information about. *

*

* Constraints:
* Length: 1 - 200
* Pattern: ^[0-9a-zA-Z._-]+
* * @return

* The name of the custom vocabulary you requested information * about. *

*/ public String getVocabularyName() { return vocabularyName; } /** *

* The name of the custom vocabulary you requested information about. *

*

* Constraints:
* Length: 1 - 200
* Pattern: ^[0-9a-zA-Z._-]+
* * @param vocabularyName

* The name of the custom vocabulary you requested information * about. *

*/ public void setVocabularyName(String vocabularyName) { this.vocabularyName = vocabularyName; } /** *

* The name of the custom vocabulary you requested information about. *

*

* Returns a reference to this object so that method calls can be chained * together. *

* Constraints:
* Length: 1 - 200
* Pattern: ^[0-9a-zA-Z._-]+
* * @param vocabularyName

* The name of the custom vocabulary you requested information * about. *

* @return A reference to this updated object so that method calls can be * chained together. */ public GetVocabularyResult withVocabularyName(String vocabularyName) { this.vocabularyName = vocabularyName; return this; } /** *

* The language code you selected for your custom vocabulary. *

*

* 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 you selected for your custom vocabulary. *

* @see LanguageCode */ public String getLanguageCode() { return languageCode; } /** *

* The language code you selected for your custom vocabulary. *

*

* 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 you selected for your custom vocabulary. *

* @see LanguageCode */ public void setLanguageCode(String languageCode) { this.languageCode = languageCode; } /** *

* The language code you selected for your custom vocabulary. *

*

* 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 you selected for your custom vocabulary. *

* @return A reference to this updated object so that method calls can be * chained together. * @see LanguageCode */ public GetVocabularyResult withLanguageCode(String languageCode) { this.languageCode = languageCode; return this; } /** *

* The language code you selected for your custom vocabulary. *

*

* 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 you selected for your custom vocabulary. *

* @see LanguageCode */ public void setLanguageCode(LanguageCode languageCode) { this.languageCode = languageCode.toString(); } /** *

* The language code you selected for your custom vocabulary. *

*

* 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 you selected for your custom vocabulary. *

* @return A reference to this updated object so that method calls can be * chained together. * @see LanguageCode */ public GetVocabularyResult withLanguageCode(LanguageCode languageCode) { this.languageCode = languageCode.toString(); return this; } /** *

* The processing state of your custom vocabulary. If the state is * READY, you can use the custom vocabulary in a * StartTranscriptionJob request. *

*

* Constraints:
* Allowed Values: PENDING, READY, FAILED * * @return

* The processing state of your custom vocabulary. If the state is * READY, you can use the custom vocabulary in a * StartTranscriptionJob request. *

* @see VocabularyState */ public String getVocabularyState() { return vocabularyState; } /** *

* The processing state of your custom vocabulary. If the state is * READY, you can use the custom vocabulary in a * StartTranscriptionJob request. *

*

* Constraints:
* Allowed Values: PENDING, READY, FAILED * * @param vocabularyState

* The processing state of your custom vocabulary. If the state * is READY, you can use the custom vocabulary in a * StartTranscriptionJob request. *

* @see VocabularyState */ public void setVocabularyState(String vocabularyState) { this.vocabularyState = vocabularyState; } /** *

* The processing state of your custom vocabulary. If the state is * READY, you can use the custom vocabulary in a * StartTranscriptionJob request. *

*

* Returns a reference to this object so that method calls can be chained * together. *

* Constraints:
* Allowed Values: PENDING, READY, FAILED * * @param vocabularyState

* The processing state of your custom vocabulary. If the state * is READY, you can use the custom vocabulary in a * StartTranscriptionJob request. *

* @return A reference to this updated object so that method calls can be * chained together. * @see VocabularyState */ public GetVocabularyResult withVocabularyState(String vocabularyState) { this.vocabularyState = vocabularyState; return this; } /** *

* The processing state of your custom vocabulary. If the state is * READY, you can use the custom vocabulary in a * StartTranscriptionJob request. *

*

* Constraints:
* Allowed Values: PENDING, READY, FAILED * * @param vocabularyState

* The processing state of your custom vocabulary. If the state * is READY, you can use the custom vocabulary in a * StartTranscriptionJob request. *

* @see VocabularyState */ public void setVocabularyState(VocabularyState vocabularyState) { this.vocabularyState = vocabularyState.toString(); } /** *

* The processing state of your custom vocabulary. If the state is * READY, you can use the custom vocabulary in a * StartTranscriptionJob request. *

*

* Returns a reference to this object so that method calls can be chained * together. *

* Constraints:
* Allowed Values: PENDING, READY, FAILED * * @param vocabularyState

* The processing state of your custom vocabulary. If the state * is READY, you can use the custom vocabulary in a * StartTranscriptionJob request. *

* @return A reference to this updated object so that method calls can be * chained together. * @see VocabularyState */ public GetVocabularyResult withVocabularyState(VocabularyState vocabularyState) { this.vocabularyState = vocabularyState.toString(); return this; } /** *

* The date and time the specified custom vocabulary was last modified. *

*

* 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 12:32 PM UTC-7 * on May 4, 2022. *

* * @return

* The date and time the specified custom vocabulary was last * modified. *

*

* 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 12:32 PM * UTC-7 on May 4, 2022. *

*/ public java.util.Date getLastModifiedTime() { return lastModifiedTime; } /** *

* The date and time the specified custom vocabulary was last modified. *

*

* 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 12:32 PM UTC-7 * on May 4, 2022. *

* * @param lastModifiedTime

* The date and time the specified custom vocabulary was last * modified. *

*

* 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 12:32 * PM UTC-7 on May 4, 2022. *

*/ public void setLastModifiedTime(java.util.Date lastModifiedTime) { this.lastModifiedTime = lastModifiedTime; } /** *

* The date and time the specified custom vocabulary was last modified. *

*

* 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 12:32 PM UTC-7 * on May 4, 2022. *

*

* Returns a reference to this object so that method calls can be chained * together. * * @param lastModifiedTime

* The date and time the specified custom vocabulary was last * modified. *

*

* 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 12:32 * PM UTC-7 on May 4, 2022. *

* @return A reference to this updated object so that method calls can be * chained together. */ public GetVocabularyResult withLastModifiedTime(java.util.Date lastModifiedTime) { this.lastModifiedTime = lastModifiedTime; return this; } /** *

* If VocabularyState is FAILED, * FailureReason contains information about why the custom * vocabulary request failed. See also: Common Errors. *

* * @return

* If VocabularyState is FAILED, * FailureReason contains information about why the * custom vocabulary request failed. See also: Common Errors. *

*/ public String getFailureReason() { return failureReason; } /** *

* If VocabularyState is FAILED, * FailureReason contains information about why the custom * vocabulary request failed. See also: Common Errors. *

* * @param failureReason

* If VocabularyState is FAILED, * FailureReason contains information about why the * custom vocabulary request failed. See also: Common Errors. *

*/ public void setFailureReason(String failureReason) { this.failureReason = failureReason; } /** *

* If VocabularyState is FAILED, * FailureReason contains information about why the custom * vocabulary request failed. See also: Common Errors. *

*

* Returns a reference to this object so that method calls can be chained * together. * * @param failureReason

* If VocabularyState is FAILED, * FailureReason contains information about why the * custom vocabulary request failed. See also: Common Errors. *

* @return A reference to this updated object so that method calls can be * chained together. */ public GetVocabularyResult withFailureReason(String failureReason) { this.failureReason = failureReason; return this; } /** *

* The S3 location where the custom vocabulary is stored; use this URI to * view or download the custom vocabulary. *

*

* Constraints:
* Length: 1 - 2000
* Pattern: (s3://|http(s*)://).+
* * @return

* The S3 location where the custom vocabulary is stored; use this * URI to view or download the custom vocabulary. *

*/ public String getDownloadUri() { return downloadUri; } /** *

* The S3 location where the custom vocabulary is stored; use this URI to * view or download the custom vocabulary. *

*

* Constraints:
* Length: 1 - 2000
* Pattern: (s3://|http(s*)://).+
* * @param downloadUri

* The S3 location where the custom vocabulary is stored; use * this URI to view or download the custom vocabulary. *

*/ public void setDownloadUri(String downloadUri) { this.downloadUri = downloadUri; } /** *

* The S3 location where the custom vocabulary is stored; use this URI to * view or download the custom vocabulary. *

*

* Returns a reference to this object so that method calls can be chained * together. *

* Constraints:
* Length: 1 - 2000
* Pattern: (s3://|http(s*)://).+
* * @param downloadUri

* The S3 location where the custom vocabulary is stored; use * this URI to view or download the custom vocabulary. *

* @return A reference to this updated object so that method calls can be * chained together. */ public GetVocabularyResult withDownloadUri(String downloadUri) { this.downloadUri = downloadUri; return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getVocabularyName() != null) sb.append("VocabularyName: " + getVocabularyName() + ","); if (getLanguageCode() != null) sb.append("LanguageCode: " + getLanguageCode() + ","); if (getVocabularyState() != null) sb.append("VocabularyState: " + getVocabularyState() + ","); if (getLastModifiedTime() != null) sb.append("LastModifiedTime: " + getLastModifiedTime() + ","); if (getFailureReason() != null) sb.append("FailureReason: " + getFailureReason() + ","); if (getDownloadUri() != null) sb.append("DownloadUri: " + getDownloadUri()); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getVocabularyName() == null) ? 0 : getVocabularyName().hashCode()); hashCode = prime * hashCode + ((getLanguageCode() == null) ? 0 : getLanguageCode().hashCode()); hashCode = prime * hashCode + ((getVocabularyState() == null) ? 0 : getVocabularyState().hashCode()); hashCode = prime * hashCode + ((getLastModifiedTime() == null) ? 0 : getLastModifiedTime().hashCode()); hashCode = prime * hashCode + ((getFailureReason() == null) ? 0 : getFailureReason().hashCode()); hashCode = prime * hashCode + ((getDownloadUri() == null) ? 0 : getDownloadUri().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof GetVocabularyResult == false) return false; GetVocabularyResult other = (GetVocabularyResult) obj; if (other.getVocabularyName() == null ^ this.getVocabularyName() == null) return false; if (other.getVocabularyName() != null && other.getVocabularyName().equals(this.getVocabularyName()) == false) return false; if (other.getLanguageCode() == null ^ this.getLanguageCode() == null) return false; if (other.getLanguageCode() != null && other.getLanguageCode().equals(this.getLanguageCode()) == false) return false; if (other.getVocabularyState() == null ^ this.getVocabularyState() == null) return false; if (other.getVocabularyState() != null && other.getVocabularyState().equals(this.getVocabularyState()) == false) return false; if (other.getLastModifiedTime() == null ^ this.getLastModifiedTime() == null) return false; if (other.getLastModifiedTime() != null && other.getLastModifiedTime().equals(this.getLastModifiedTime()) == false) return false; if (other.getFailureReason() == null ^ this.getFailureReason() == null) return false; if (other.getFailureReason() != null && other.getFailureReason().equals(this.getFailureReason()) == false) return false; if (other.getDownloadUri() == null ^ this.getDownloadUri() == null) return false; if (other.getDownloadUri() != null && other.getDownloadUri().equals(this.getDownloadUri()) == false) return false; return true; } }