/** * 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 medical transcript.

See Also:

* AWS * API Reference

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

The S3 object location of the medical transcript.

Use this URI to * access the medical transcript. This URI points to the S3 bucket you created to * store the medical transcript.

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

The S3 object location of the medical transcript.

Use this URI to * access the medical transcript. This URI points to the S3 bucket you created to * store the medical transcript.

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

The S3 object location of the medical transcript.

Use this URI to * access the medical transcript. This URI points to the S3 bucket you created to * store the medical transcript.

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

The S3 object location of the medical transcript.

Use this URI to * access the medical transcript. This URI points to the S3 bucket you created to * store the medical transcript.

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

The S3 object location of the medical transcript.

Use this URI to * access the medical transcript. This URI points to the S3 bucket you created to * store the medical transcript.

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

The S3 object location of the medical transcript.

Use this URI to * access the medical transcript. This URI points to the S3 bucket you created to * store the medical transcript.

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

The S3 object location of the medical transcript.

Use this URI to * access the medical transcript. This URI points to the S3 bucket you created to * store the medical transcript.

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

The S3 object location of the medical transcript.

Use this URI to * access the medical transcript. This URI points to the S3 bucket you created to * store the medical transcript.

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