73 lines
2.0 KiB
C
73 lines
2.0 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/mediaconvert/MediaConvert_EXPORTS.h>
|
|||
|
|
#include <aws/mediaconvert/model/JobTemplate.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
template<typename RESULT_TYPE>
|
|||
|
|
class AmazonWebServiceResult;
|
|||
|
|
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Json
|
|||
|
|
{
|
|||
|
|
class JsonValue;
|
|||
|
|
} // namespace Json
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace MediaConvert
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
class AWS_MEDIACONVERT_API CreateJobTemplateResult
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
CreateJobTemplateResult();
|
|||
|
|
CreateJobTemplateResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
CreateJobTemplateResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* A job template is a pre-made set of encoding instructions that you can use to
|
|||
|
|
* quickly create a job.
|
|||
|
|
*/
|
|||
|
|
inline const JobTemplate& GetJobTemplate() const{ return m_jobTemplate; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* A job template is a pre-made set of encoding instructions that you can use to
|
|||
|
|
* quickly create a job.
|
|||
|
|
*/
|
|||
|
|
inline void SetJobTemplate(const JobTemplate& value) { m_jobTemplate = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* A job template is a pre-made set of encoding instructions that you can use to
|
|||
|
|
* quickly create a job.
|
|||
|
|
*/
|
|||
|
|
inline void SetJobTemplate(JobTemplate&& value) { m_jobTemplate = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* A job template is a pre-made set of encoding instructions that you can use to
|
|||
|
|
* quickly create a job.
|
|||
|
|
*/
|
|||
|
|
inline CreateJobTemplateResult& WithJobTemplate(const JobTemplate& value) { SetJobTemplate(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* A job template is a pre-made set of encoding instructions that you can use to
|
|||
|
|
* quickly create a job.
|
|||
|
|
*/
|
|||
|
|
inline CreateJobTemplateResult& WithJobTemplate(JobTemplate&& value) { SetJobTemplate(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
JobTemplate m_jobTemplate;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace MediaConvert
|
|||
|
|
} // namespace Aws
|