AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
StartMedicalStreamTranscriptionInitialResponse.h
1
6#pragma once
7#include <aws/transcribestreaming/TranscribeStreamingService_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/transcribestreaming/model/LanguageCode.h>
10#include <aws/transcribestreaming/model/MediaEncoding.h>
11#include <aws/transcribestreaming/model/Specialty.h>
12#include <aws/transcribestreaming/model/Type.h>
13#include <aws/transcribestreaming/model/MedicalContentIdentificationType.h>
14#include <aws/core/http/HttpTypes.h>
15#include <utility>
16
17namespace Aws
18{
19namespace Utils
20{
21namespace Json
22{
23 class JsonValue;
24 class JsonView;
25} // namespace Json
26} // namespace Utils
27namespace TranscribeStreamingService
28{
29namespace Model
30{
31
33 {
34 public:
35 AWS_TRANSCRIBESTREAMINGSERVICE_API StartMedicalStreamTranscriptionInitialResponse() = default;
38 AWS_TRANSCRIBESTREAMINGSERVICE_API StartMedicalStreamTranscriptionInitialResponse(const Http::HeaderValueCollection& responseHeaders);
39 AWS_TRANSCRIBESTREAMINGSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::String& GetRequestId() const { return m_requestId; }
47 inline bool RequestIdHasBeenSet() const { return m_requestIdHasBeenSet; }
48 template<typename RequestIdT = Aws::String>
49 void SetRequestId(RequestIdT&& value) { m_requestIdHasBeenSet = true; m_requestId = std::forward<RequestIdT>(value); }
50 template<typename RequestIdT = Aws::String>
51 StartMedicalStreamTranscriptionInitialResponse& WithRequestId(RequestIdT&& value) { SetRequestId(std::forward<RequestIdT>(value)); return *this;}
53
55
59 inline LanguageCode GetLanguageCode() const { return m_languageCode; }
60 inline bool LanguageCodeHasBeenSet() const { return m_languageCodeHasBeenSet; }
61 inline void SetLanguageCode(LanguageCode value) { m_languageCodeHasBeenSet = true; m_languageCode = value; }
64
66
69 inline int GetMediaSampleRateHertz() const { return m_mediaSampleRateHertz; }
70 inline bool MediaSampleRateHertzHasBeenSet() const { return m_mediaSampleRateHertzHasBeenSet; }
71 inline void SetMediaSampleRateHertz(int value) { m_mediaSampleRateHertzHasBeenSet = true; m_mediaSampleRateHertz = value; }
74
76
79 inline MediaEncoding GetMediaEncoding() const { return m_mediaEncoding; }
80 inline bool MediaEncodingHasBeenSet() const { return m_mediaEncodingHasBeenSet; }
81 inline void SetMediaEncoding(MediaEncoding value) { m_mediaEncodingHasBeenSet = true; m_mediaEncoding = value; }
84
86
90 inline const Aws::String& GetVocabularyName() const { return m_vocabularyName; }
91 inline bool VocabularyNameHasBeenSet() const { return m_vocabularyNameHasBeenSet; }
92 template<typename VocabularyNameT = Aws::String>
93 void SetVocabularyName(VocabularyNameT&& value) { m_vocabularyNameHasBeenSet = true; m_vocabularyName = std::forward<VocabularyNameT>(value); }
94 template<typename VocabularyNameT = Aws::String>
95 StartMedicalStreamTranscriptionInitialResponse& WithVocabularyName(VocabularyNameT&& value) { SetVocabularyName(std::forward<VocabularyNameT>(value)); return *this;}
97
99
102 inline Specialty GetSpecialty() const { return m_specialty; }
103 inline bool SpecialtyHasBeenSet() const { return m_specialtyHasBeenSet; }
104 inline void SetSpecialty(Specialty value) { m_specialtyHasBeenSet = true; m_specialty = value; }
107
109
112 inline Type GetType() const { return m_type; }
113 inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; }
114 inline void SetType(Type value) { m_typeHasBeenSet = true; m_type = value; }
117
119
122 inline bool GetShowSpeakerLabel() const { return m_showSpeakerLabel; }
123 inline bool ShowSpeakerLabelHasBeenSet() const { return m_showSpeakerLabelHasBeenSet; }
124 inline void SetShowSpeakerLabel(bool value) { m_showSpeakerLabelHasBeenSet = true; m_showSpeakerLabel = value; }
127
129
132 inline const Aws::String& GetSessionId() const { return m_sessionId; }
133 inline bool SessionIdHasBeenSet() const { return m_sessionIdHasBeenSet; }
134 template<typename SessionIdT = Aws::String>
135 void SetSessionId(SessionIdT&& value) { m_sessionIdHasBeenSet = true; m_sessionId = std::forward<SessionIdT>(value); }
136 template<typename SessionIdT = Aws::String>
137 StartMedicalStreamTranscriptionInitialResponse& WithSessionId(SessionIdT&& value) { SetSessionId(std::forward<SessionIdT>(value)); return *this;}
139
141
144 inline bool GetEnableChannelIdentification() const { return m_enableChannelIdentification; }
145 inline bool EnableChannelIdentificationHasBeenSet() const { return m_enableChannelIdentificationHasBeenSet; }
146 inline void SetEnableChannelIdentification(bool value) { m_enableChannelIdentificationHasBeenSet = true; m_enableChannelIdentification = value; }
149
151
154 inline int GetNumberOfChannels() const { return m_numberOfChannels; }
155 inline bool NumberOfChannelsHasBeenSet() const { return m_numberOfChannelsHasBeenSet; }
156 inline void SetNumberOfChannels(int value) { m_numberOfChannelsHasBeenSet = true; m_numberOfChannels = value; }
159
161
164 inline MedicalContentIdentificationType GetContentIdentificationType() const { return m_contentIdentificationType; }
165 inline bool ContentIdentificationTypeHasBeenSet() const { return m_contentIdentificationTypeHasBeenSet; }
166 inline void SetContentIdentificationType(MedicalContentIdentificationType value) { m_contentIdentificationTypeHasBeenSet = true; m_contentIdentificationType = value; }
169 private:
170
171 Aws::String m_requestId;
172 bool m_requestIdHasBeenSet = false;
173
174 LanguageCode m_languageCode{LanguageCode::NOT_SET};
175 bool m_languageCodeHasBeenSet = false;
176
177 int m_mediaSampleRateHertz{0};
178 bool m_mediaSampleRateHertzHasBeenSet = false;
179
180 MediaEncoding m_mediaEncoding{MediaEncoding::NOT_SET};
181 bool m_mediaEncodingHasBeenSet = false;
182
183 Aws::String m_vocabularyName;
184 bool m_vocabularyNameHasBeenSet = false;
185
186 Specialty m_specialty{Specialty::NOT_SET};
187 bool m_specialtyHasBeenSet = false;
188
189 Type m_type{Type::NOT_SET};
190 bool m_typeHasBeenSet = false;
191
192 bool m_showSpeakerLabel{false};
193 bool m_showSpeakerLabelHasBeenSet = false;
194
195 Aws::String m_sessionId;
196 bool m_sessionIdHasBeenSet = false;
197
198 bool m_enableChannelIdentification{false};
199 bool m_enableChannelIdentificationHasBeenSet = false;
200
201 int m_numberOfChannels{0};
202 bool m_numberOfChannelsHasBeenSet = false;
203
205 bool m_contentIdentificationTypeHasBeenSet = false;
206 };
207
208} // namespace Model
209} // namespace TranscribeStreamingService
210} // namespace Aws
StartMedicalStreamTranscriptionInitialResponse & WithContentIdentificationType(MedicalContentIdentificationType value)
AWS_TRANSCRIBESTREAMINGSERVICE_API StartMedicalStreamTranscriptionInitialResponse(Aws::Utils::Json::JsonView jsonValue)
AWS_TRANSCRIBESTREAMINGSERVICE_API StartMedicalStreamTranscriptionInitialResponse(const Http::HeaderValueCollection &responseHeaders)
AWS_TRANSCRIBESTREAMINGSERVICE_API StartMedicalStreamTranscriptionInitialResponse & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_TRANSCRIBESTREAMINGSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_TRANSCRIBESTREAMINGSERVICE_API StartMedicalStreamTranscriptionInitialResponse()=default
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue