This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-transcribe/source/model/TranscriptionJob.cpp

272 lines
6.4 KiB
C++
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/transcribe/model/TranscriptionJob.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace TranscribeService
{
namespace Model
{
TranscriptionJob::TranscriptionJob() :
m_transcriptionJobNameHasBeenSet(false),
m_transcriptionJobStatus(TranscriptionJobStatus::NOT_SET),
m_transcriptionJobStatusHasBeenSet(false),
m_languageCode(LanguageCode::NOT_SET),
m_languageCodeHasBeenSet(false),
m_mediaSampleRateHertz(0),
m_mediaSampleRateHertzHasBeenSet(false),
m_mediaFormat(MediaFormat::NOT_SET),
m_mediaFormatHasBeenSet(false),
m_mediaHasBeenSet(false),
m_transcriptHasBeenSet(false),
m_startTimeHasBeenSet(false),
m_creationTimeHasBeenSet(false),
m_completionTimeHasBeenSet(false),
m_failureReasonHasBeenSet(false),
m_settingsHasBeenSet(false),
m_modelSettingsHasBeenSet(false),
m_jobExecutionSettingsHasBeenSet(false),
m_contentRedactionHasBeenSet(false)
{
}
TranscriptionJob::TranscriptionJob(JsonView jsonValue) :
m_transcriptionJobNameHasBeenSet(false),
m_transcriptionJobStatus(TranscriptionJobStatus::NOT_SET),
m_transcriptionJobStatusHasBeenSet(false),
m_languageCode(LanguageCode::NOT_SET),
m_languageCodeHasBeenSet(false),
m_mediaSampleRateHertz(0),
m_mediaSampleRateHertzHasBeenSet(false),
m_mediaFormat(MediaFormat::NOT_SET),
m_mediaFormatHasBeenSet(false),
m_mediaHasBeenSet(false),
m_transcriptHasBeenSet(false),
m_startTimeHasBeenSet(false),
m_creationTimeHasBeenSet(false),
m_completionTimeHasBeenSet(false),
m_failureReasonHasBeenSet(false),
m_settingsHasBeenSet(false),
m_modelSettingsHasBeenSet(false),
m_jobExecutionSettingsHasBeenSet(false),
m_contentRedactionHasBeenSet(false)
{
*this = jsonValue;
}
TranscriptionJob& TranscriptionJob::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("TranscriptionJobName"))
{
m_transcriptionJobName = jsonValue.GetString("TranscriptionJobName");
m_transcriptionJobNameHasBeenSet = true;
}
if(jsonValue.ValueExists("TranscriptionJobStatus"))
{
m_transcriptionJobStatus = TranscriptionJobStatusMapper::GetTranscriptionJobStatusForName(jsonValue.GetString("TranscriptionJobStatus"));
m_transcriptionJobStatusHasBeenSet = true;
}
if(jsonValue.ValueExists("LanguageCode"))
{
m_languageCode = LanguageCodeMapper::GetLanguageCodeForName(jsonValue.GetString("LanguageCode"));
m_languageCodeHasBeenSet = true;
}
if(jsonValue.ValueExists("MediaSampleRateHertz"))
{
m_mediaSampleRateHertz = jsonValue.GetInteger("MediaSampleRateHertz");
m_mediaSampleRateHertzHasBeenSet = true;
}
if(jsonValue.ValueExists("MediaFormat"))
{
m_mediaFormat = MediaFormatMapper::GetMediaFormatForName(jsonValue.GetString("MediaFormat"));
m_mediaFormatHasBeenSet = true;
}
if(jsonValue.ValueExists("Media"))
{
m_media = jsonValue.GetObject("Media");
m_mediaHasBeenSet = true;
}
if(jsonValue.ValueExists("Transcript"))
{
m_transcript = jsonValue.GetObject("Transcript");
m_transcriptHasBeenSet = true;
}
if(jsonValue.ValueExists("StartTime"))
{
m_startTime = jsonValue.GetDouble("StartTime");
m_startTimeHasBeenSet = true;
}
if(jsonValue.ValueExists("CreationTime"))
{
m_creationTime = jsonValue.GetDouble("CreationTime");
m_creationTimeHasBeenSet = true;
}
if(jsonValue.ValueExists("CompletionTime"))
{
m_completionTime = jsonValue.GetDouble("CompletionTime");
m_completionTimeHasBeenSet = true;
}
if(jsonValue.ValueExists("FailureReason"))
{
m_failureReason = jsonValue.GetString("FailureReason");
m_failureReasonHasBeenSet = true;
}
if(jsonValue.ValueExists("Settings"))
{
m_settings = jsonValue.GetObject("Settings");
m_settingsHasBeenSet = true;
}
if(jsonValue.ValueExists("ModelSettings"))
{
m_modelSettings = jsonValue.GetObject("ModelSettings");
m_modelSettingsHasBeenSet = true;
}
if(jsonValue.ValueExists("JobExecutionSettings"))
{
m_jobExecutionSettings = jsonValue.GetObject("JobExecutionSettings");
m_jobExecutionSettingsHasBeenSet = true;
}
if(jsonValue.ValueExists("ContentRedaction"))
{
m_contentRedaction = jsonValue.GetObject("ContentRedaction");
m_contentRedactionHasBeenSet = true;
}
return *this;
}
JsonValue TranscriptionJob::Jsonize() const
{
JsonValue payload;
if(m_transcriptionJobNameHasBeenSet)
{
payload.WithString("TranscriptionJobName", m_transcriptionJobName);
}
if(m_transcriptionJobStatusHasBeenSet)
{
payload.WithString("TranscriptionJobStatus", TranscriptionJobStatusMapper::GetNameForTranscriptionJobStatus(m_transcriptionJobStatus));
}
if(m_languageCodeHasBeenSet)
{
payload.WithString("LanguageCode", LanguageCodeMapper::GetNameForLanguageCode(m_languageCode));
}
if(m_mediaSampleRateHertzHasBeenSet)
{
payload.WithInteger("MediaSampleRateHertz", m_mediaSampleRateHertz);
}
if(m_mediaFormatHasBeenSet)
{
payload.WithString("MediaFormat", MediaFormatMapper::GetNameForMediaFormat(m_mediaFormat));
}
if(m_mediaHasBeenSet)
{
payload.WithObject("Media", m_media.Jsonize());
}
if(m_transcriptHasBeenSet)
{
payload.WithObject("Transcript", m_transcript.Jsonize());
}
if(m_startTimeHasBeenSet)
{
payload.WithDouble("StartTime", m_startTime.SecondsWithMSPrecision());
}
if(m_creationTimeHasBeenSet)
{
payload.WithDouble("CreationTime", m_creationTime.SecondsWithMSPrecision());
}
if(m_completionTimeHasBeenSet)
{
payload.WithDouble("CompletionTime", m_completionTime.SecondsWithMSPrecision());
}
if(m_failureReasonHasBeenSet)
{
payload.WithString("FailureReason", m_failureReason);
}
if(m_settingsHasBeenSet)
{
payload.WithObject("Settings", m_settings.Jsonize());
}
if(m_modelSettingsHasBeenSet)
{
payload.WithObject("ModelSettings", m_modelSettings.Jsonize());
}
if(m_jobExecutionSettingsHasBeenSet)
{
payload.WithObject("JobExecutionSettings", m_jobExecutionSettings.Jsonize());
}
if(m_contentRedactionHasBeenSet)
{
payload.WithObject("ContentRedaction", m_contentRedaction.Jsonize());
}
return payload;
}
} // namespace Model
} // namespace TranscribeService
} // namespace Aws