68 lines
1.9 KiB
C
68 lines
1.9 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/transcribe/TranscribeService_EXPORTS.h>
|
|||
|
|
#include <aws/transcribe/model/TranscriptionJob.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
template<typename RESULT_TYPE>
|
|||
|
|
class AmazonWebServiceResult;
|
|||
|
|
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Json
|
|||
|
|
{
|
|||
|
|
class JsonValue;
|
|||
|
|
} // namespace Json
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace TranscribeService
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
class AWS_TRANSCRIBESERVICE_API GetTranscriptionJobResult
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
GetTranscriptionJobResult();
|
|||
|
|
GetTranscriptionJobResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
GetTranscriptionJobResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>An object that contains the results of the transcription job.</p>
|
|||
|
|
*/
|
|||
|
|
inline const TranscriptionJob& GetTranscriptionJob() const{ return m_transcriptionJob; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>An object that contains the results of the transcription job.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetTranscriptionJob(const TranscriptionJob& value) { m_transcriptionJob = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>An object that contains the results of the transcription job.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetTranscriptionJob(TranscriptionJob&& value) { m_transcriptionJob = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>An object that contains the results of the transcription job.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetTranscriptionJobResult& WithTranscriptionJob(const TranscriptionJob& value) { SetTranscriptionJob(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>An object that contains the results of the transcription job.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetTranscriptionJobResult& WithTranscriptionJob(TranscriptionJob&& value) { SetTranscriptionJob(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
TranscriptionJob m_transcriptionJob;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace TranscribeService
|
|||
|
|
} // namespace Aws
|