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/TranscriptionJobSummary.cpp

195 lines
4.9 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/transcribe/model/TranscriptionJobSummary.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
{
TranscriptionJobSummary::TranscriptionJobSummary() :
m_transcriptionJobNameHasBeenSet(false),
m_creationTimeHasBeenSet(false),
m_startTimeHasBeenSet(false),
m_completionTimeHasBeenSet(false),
m_languageCode(LanguageCode::NOT_SET),
m_languageCodeHasBeenSet(false),
m_transcriptionJobStatus(TranscriptionJobStatus::NOT_SET),
m_transcriptionJobStatusHasBeenSet(false),
m_failureReasonHasBeenSet(false),
m_outputLocationType(OutputLocationType::NOT_SET),
m_outputLocationTypeHasBeenSet(false),
m_contentRedactionHasBeenSet(false),
m_modelSettingsHasBeenSet(false)
{
}
TranscriptionJobSummary::TranscriptionJobSummary(JsonView jsonValue) :
m_transcriptionJobNameHasBeenSet(false),
m_creationTimeHasBeenSet(false),
m_startTimeHasBeenSet(false),
m_completionTimeHasBeenSet(false),
m_languageCode(LanguageCode::NOT_SET),
m_languageCodeHasBeenSet(false),
m_transcriptionJobStatus(TranscriptionJobStatus::NOT_SET),
m_transcriptionJobStatusHasBeenSet(false),
m_failureReasonHasBeenSet(false),
m_outputLocationType(OutputLocationType::NOT_SET),
m_outputLocationTypeHasBeenSet(false),
m_contentRedactionHasBeenSet(false),
m_modelSettingsHasBeenSet(false)
{
*this = jsonValue;
}
TranscriptionJobSummary& TranscriptionJobSummary::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("TranscriptionJobName"))
{
m_transcriptionJobName = jsonValue.GetString("TranscriptionJobName");
m_transcriptionJobNameHasBeenSet = true;
}
if(jsonValue.ValueExists("CreationTime"))
{
m_creationTime = jsonValue.GetDouble("CreationTime");
m_creationTimeHasBeenSet = true;
}
if(jsonValue.ValueExists("StartTime"))
{
m_startTime = jsonValue.GetDouble("StartTime");
m_startTimeHasBeenSet = true;
}
if(jsonValue.ValueExists("CompletionTime"))
{
m_completionTime = jsonValue.GetDouble("CompletionTime");
m_completionTimeHasBeenSet = true;
}
if(jsonValue.ValueExists("LanguageCode"))
{
m_languageCode = LanguageCodeMapper::GetLanguageCodeForName(jsonValue.GetString("LanguageCode"));
m_languageCodeHasBeenSet = true;
}
if(jsonValue.ValueExists("TranscriptionJobStatus"))
{
m_transcriptionJobStatus = TranscriptionJobStatusMapper::GetTranscriptionJobStatusForName(jsonValue.GetString("TranscriptionJobStatus"));
m_transcriptionJobStatusHasBeenSet = true;
}
if(jsonValue.ValueExists("FailureReason"))
{
m_failureReason = jsonValue.GetString("FailureReason");
m_failureReasonHasBeenSet = true;
}
if(jsonValue.ValueExists("OutputLocationType"))
{
m_outputLocationType = OutputLocationTypeMapper::GetOutputLocationTypeForName(jsonValue.GetString("OutputLocationType"));
m_outputLocationTypeHasBeenSet = true;
}
if(jsonValue.ValueExists("ContentRedaction"))
{
m_contentRedaction = jsonValue.GetObject("ContentRedaction");
m_contentRedactionHasBeenSet = true;
}
if(jsonValue.ValueExists("ModelSettings"))
{
m_modelSettings = jsonValue.GetObject("ModelSettings");
m_modelSettingsHasBeenSet = true;
}
return *this;
}
JsonValue TranscriptionJobSummary::Jsonize() const
{
JsonValue payload;
if(m_transcriptionJobNameHasBeenSet)
{
payload.WithString("TranscriptionJobName", m_transcriptionJobName);
}
if(m_creationTimeHasBeenSet)
{
payload.WithDouble("CreationTime", m_creationTime.SecondsWithMSPrecision());
}
if(m_startTimeHasBeenSet)
{
payload.WithDouble("StartTime", m_startTime.SecondsWithMSPrecision());
}
if(m_completionTimeHasBeenSet)
{
payload.WithDouble("CompletionTime", m_completionTime.SecondsWithMSPrecision());
}
if(m_languageCodeHasBeenSet)
{
payload.WithString("LanguageCode", LanguageCodeMapper::GetNameForLanguageCode(m_languageCode));
}
if(m_transcriptionJobStatusHasBeenSet)
{
payload.WithString("TranscriptionJobStatus", TranscriptionJobStatusMapper::GetNameForTranscriptionJobStatus(m_transcriptionJobStatus));
}
if(m_failureReasonHasBeenSet)
{
payload.WithString("FailureReason", m_failureReason);
}
if(m_outputLocationTypeHasBeenSet)
{
payload.WithString("OutputLocationType", OutputLocationTypeMapper::GetNameForOutputLocationType(m_outputLocationType));
}
if(m_contentRedactionHasBeenSet)
{
payload.WithObject("ContentRedaction", m_contentRedaction.Jsonize());
}
if(m_modelSettingsHasBeenSet)
{
payload.WithObject("ModelSettings", m_modelSettings.Jsonize());
}
return payload;
}
} // namespace Model
} // namespace TranscribeService
} // namespace Aws