/** * 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/core/utils/memory/stl/AWSVector.h> #include <aws/core/utils/memory/stl/AWSString.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 ListJobTemplatesResult { public: AWS_MEDIACONVERT_API ListJobTemplatesResult(); AWS_MEDIACONVERT_API ListJobTemplatesResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); AWS_MEDIACONVERT_API ListJobTemplatesResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); /** * List of Job templates. */ inline const Aws::Vector<JobTemplate>& GetJobTemplates() const{ return m_jobTemplates; } /** * List of Job templates. */ inline void SetJobTemplates(const Aws::Vector<JobTemplate>& value) { m_jobTemplates = value; } /** * List of Job templates. */ inline void SetJobTemplates(Aws::Vector<JobTemplate>&& value) { m_jobTemplates = std::move(value); } /** * List of Job templates. */ inline ListJobTemplatesResult& WithJobTemplates(const Aws::Vector<JobTemplate>& value) { SetJobTemplates(value); return *this;} /** * List of Job templates. */ inline ListJobTemplatesResult& WithJobTemplates(Aws::Vector<JobTemplate>&& value) { SetJobTemplates(std::move(value)); return *this;} /** * List of Job templates. */ inline ListJobTemplatesResult& AddJobTemplates(const JobTemplate& value) { m_jobTemplates.push_back(value); return *this; } /** * List of Job templates. */ inline ListJobTemplatesResult& AddJobTemplates(JobTemplate&& value) { m_jobTemplates.push_back(std::move(value)); return *this; } /** * Use this string to request the next batch of job templates. */ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** * Use this string to request the next batch of job templates. */ inline void SetNextToken(const Aws::String& value) { m_nextToken = value; } /** * Use this string to request the next batch of job templates. */ inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); } /** * Use this string to request the next batch of job templates. */ inline void SetNextToken(const char* value) { m_nextToken.assign(value); } /** * Use this string to request the next batch of job templates. */ inline ListJobTemplatesResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** * Use this string to request the next batch of job templates. */ inline ListJobTemplatesResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** * Use this string to request the next batch of job templates. */ inline ListJobTemplatesResult& WithNextToken(const char* value) { SetNextToken(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline ListJobTemplatesResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline ListJobTemplatesResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline ListJobTemplatesResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector<JobTemplate> m_jobTemplates; Aws::String m_nextToken; Aws::String m_requestId; }; } // namespace Model } // namespace MediaConvert } // namespace Aws