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

Provides you with the Amazon S3 URI you can use to access your * transcript.

See Also:

AWS * API Reference

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

The Amazon S3 location of your transcript. You can use this URI to access or * download your transcript.

Note that this is the Amazon S3 location you * specified in your request using the OutputBucketName parameter.

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

The Amazon S3 location of your transcript. You can use this URI to access or * download your transcript.

Note that this is the Amazon S3 location you * specified in your request using the OutputBucketName parameter.

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

The Amazon S3 location of your transcript. You can use this URI to access or * download your transcript.

Note that this is the Amazon S3 location you * specified in your request using the OutputBucketName parameter.

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

The Amazon S3 location of your transcript. You can use this URI to access or * download your transcript.

Note that this is the Amazon S3 location you * specified in your request using the OutputBucketName parameter.

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

The Amazon S3 location of your transcript. You can use this URI to access or * download your transcript.

Note that this is the Amazon S3 location you * specified in your request using the OutputBucketName parameter.

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

The Amazon S3 location of your transcript. You can use this URI to access or * download your transcript.

Note that this is the Amazon S3 location you * specified in your request using the OutputBucketName parameter.

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

The Amazon S3 location of your transcript. You can use this URI to access or * download your transcript.

Note that this is the Amazon S3 location you * specified in your request using the OutputBucketName parameter.

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

The Amazon S3 location of your transcript. You can use this URI to access or * download your transcript.

Note that this is the Amazon S3 location you * specified in your request using the OutputBucketName parameter.

*/ inline MedicalTranscript& WithTranscriptFileUri(const char* value) { SetTranscriptFileUri(value); return *this;} private: Aws::String m_transcriptFileUri; bool m_transcriptFileUriHasBeenSet = false; }; } // namespace Model } // namespace TranscribeService } // namespace Aws