/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace TranscribeService { namespace Model { /** *

Identifies the location of a transcription.

See Also:

AWS * API Reference

*/ class AWS_TRANSCRIBESERVICE_API Transcript { public: Transcript(); Transcript(Aws::Utils::Json::JsonView jsonValue); Transcript& operator=(Aws::Utils::Json::JsonView jsonValue); Aws::Utils::Json::JsonValue Jsonize() const; /** *

The S3 object location of the transcript.

Use this URI to access the * transcript. If you specified an S3 bucket in the OutputBucketName * field when you created the job, this is the URI of that bucket. If you chose to * store the transcript in Amazon Transcribe, this is a shareable URL that provides * secure access to that location.

*/ inline const Aws::String& GetTranscriptFileUri() const{ return m_transcriptFileUri; } /** *

The S3 object location of the transcript.

Use this URI to access the * transcript. If you specified an S3 bucket in the OutputBucketName * field when you created the job, this is the URI of that bucket. If you chose to * store the transcript in Amazon Transcribe, this is a shareable URL that provides * secure access to that location.

*/ inline bool TranscriptFileUriHasBeenSet() const { return m_transcriptFileUriHasBeenSet; } /** *

The S3 object location of the transcript.

Use this URI to access the * transcript. If you specified an S3 bucket in the OutputBucketName * field when you created the job, this is the URI of that bucket. If you chose to * store the transcript in Amazon Transcribe, this is a shareable URL that provides * secure access to that location.

*/ inline void SetTranscriptFileUri(const Aws::String& value) { m_transcriptFileUriHasBeenSet = true; m_transcriptFileUri = value; } /** *

The S3 object location of the transcript.

Use this URI to access the * transcript. If you specified an S3 bucket in the OutputBucketName * field when you created the job, this is the URI of that bucket. If you chose to * store the transcript in Amazon Transcribe, this is a shareable URL that provides * secure access to that location.

*/ inline void SetTranscriptFileUri(Aws::String&& value) { m_transcriptFileUriHasBeenSet = true; m_transcriptFileUri = std::move(value); } /** *

The S3 object location of the transcript.

Use this URI to access the * transcript. If you specified an S3 bucket in the OutputBucketName * field when you created the job, this is the URI of that bucket. If you chose to * store the transcript in Amazon Transcribe, this is a shareable URL that provides * secure access to that location.

*/ inline void SetTranscriptFileUri(const char* value) { m_transcriptFileUriHasBeenSet = true; m_transcriptFileUri.assign(value); } /** *

The S3 object location of the transcript.

Use this URI to access the * transcript. If you specified an S3 bucket in the OutputBucketName * field when you created the job, this is the URI of that bucket. If you chose to * store the transcript in Amazon Transcribe, this is a shareable URL that provides * secure access to that location.

*/ inline Transcript& WithTranscriptFileUri(const Aws::String& value) { SetTranscriptFileUri(value); return *this;} /** *

The S3 object location of the transcript.

Use this URI to access the * transcript. If you specified an S3 bucket in the OutputBucketName * field when you created the job, this is the URI of that bucket. If you chose to * store the transcript in Amazon Transcribe, this is a shareable URL that provides * secure access to that location.

*/ inline Transcript& WithTranscriptFileUri(Aws::String&& value) { SetTranscriptFileUri(std::move(value)); return *this;} /** *

The S3 object location of the transcript.

Use this URI to access the * transcript. If you specified an S3 bucket in the OutputBucketName * field when you created the job, this is the URI of that bucket. If you chose to * store the transcript in Amazon Transcribe, this is a shareable URL that provides * secure access to that location.

*/ inline Transcript& WithTranscriptFileUri(const char* value) { SetTranscriptFileUri(value); return *this;} /** *

The S3 object location of the redacted transcript.

Use this URI to * access the redacted transcript. If you specified an S3 bucket in the * OutputBucketName field when you created the job, this is the URI of * that bucket. If you chose to store the transcript in Amazon Transcribe, this is * a shareable URL that provides secure access to that location.

*/ inline const Aws::String& GetRedactedTranscriptFileUri() const{ return m_redactedTranscriptFileUri; } /** *

The S3 object location of the redacted transcript.

Use this URI to * access the redacted transcript. If you specified an S3 bucket in the * OutputBucketName field when you created the job, this is the URI of * that bucket. If you chose to store the transcript in Amazon Transcribe, this is * a shareable URL that provides secure access to that location.

*/ inline bool RedactedTranscriptFileUriHasBeenSet() const { return m_redactedTranscriptFileUriHasBeenSet; } /** *

The S3 object location of the redacted transcript.

Use this URI to * access the redacted transcript. If you specified an S3 bucket in the * OutputBucketName field when you created the job, this is the URI of * that bucket. If you chose to store the transcript in Amazon Transcribe, this is * a shareable URL that provides secure access to that location.

*/ inline void SetRedactedTranscriptFileUri(const Aws::String& value) { m_redactedTranscriptFileUriHasBeenSet = true; m_redactedTranscriptFileUri = value; } /** *

The S3 object location of the redacted transcript.

Use this URI to * access the redacted transcript. If you specified an S3 bucket in the * OutputBucketName field when you created the job, this is the URI of * that bucket. If you chose to store the transcript in Amazon Transcribe, this is * a shareable URL that provides secure access to that location.

*/ inline void SetRedactedTranscriptFileUri(Aws::String&& value) { m_redactedTranscriptFileUriHasBeenSet = true; m_redactedTranscriptFileUri = std::move(value); } /** *

The S3 object location of the redacted transcript.

Use this URI to * access the redacted transcript. If you specified an S3 bucket in the * OutputBucketName field when you created the job, this is the URI of * that bucket. If you chose to store the transcript in Amazon Transcribe, this is * a shareable URL that provides secure access to that location.

*/ inline void SetRedactedTranscriptFileUri(const char* value) { m_redactedTranscriptFileUriHasBeenSet = true; m_redactedTranscriptFileUri.assign(value); } /** *

The S3 object location of the redacted transcript.

Use this URI to * access the redacted transcript. If you specified an S3 bucket in the * OutputBucketName field when you created the job, this is the URI of * that bucket. If you chose to store the transcript in Amazon Transcribe, this is * a shareable URL that provides secure access to that location.

*/ inline Transcript& WithRedactedTranscriptFileUri(const Aws::String& value) { SetRedactedTranscriptFileUri(value); return *this;} /** *

The S3 object location of the redacted transcript.

Use this URI to * access the redacted transcript. If you specified an S3 bucket in the * OutputBucketName field when you created the job, this is the URI of * that bucket. If you chose to store the transcript in Amazon Transcribe, this is * a shareable URL that provides secure access to that location.

*/ inline Transcript& WithRedactedTranscriptFileUri(Aws::String&& value) { SetRedactedTranscriptFileUri(std::move(value)); return *this;} /** *

The S3 object location of the redacted transcript.

Use this URI to * access the redacted transcript. If you specified an S3 bucket in the * OutputBucketName field when you created the job, this is the URI of * that bucket. If you chose to store the transcript in Amazon Transcribe, this is * a shareable URL that provides secure access to that location.

*/ inline Transcript& WithRedactedTranscriptFileUri(const char* value) { SetRedactedTranscriptFileUri(value); return *this;} private: Aws::String m_transcriptFileUri; bool m_transcriptFileUriHasBeenSet; Aws::String m_redactedTranscriptFileUri; bool m_redactedTranscriptFileUriHasBeenSet; }; } // namespace Model } // namespace TranscribeService } // namespace Aws