/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/elastictranscoder/ElasticTranscoder_EXPORTS.h> #include <aws/elastictranscoder/model/Preset.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <utility> namespace Aws { template<typename RESULT_TYPE> class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace ElasticTranscoder { namespace Model { /** * <p>The <code>CreatePresetResponse</code> structure.</p><p><h3>See Also:</h3> * <a * href="http://docs.aws.amazon.com/goto/WebAPI/elastictranscoder-2012-09-25/CreatePresetResponse">AWS * API Reference</a></p> */ class CreatePresetResult { public: AWS_ELASTICTRANSCODER_API CreatePresetResult(); AWS_ELASTICTRANSCODER_API CreatePresetResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); AWS_ELASTICTRANSCODER_API CreatePresetResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); /** * <p>A section of the response body that provides information about the preset * that is created.</p> */ inline const Preset& GetPreset() const{ return m_preset; } /** * <p>A section of the response body that provides information about the preset * that is created.</p> */ inline void SetPreset(const Preset& value) { m_preset = value; } /** * <p>A section of the response body that provides information about the preset * that is created.</p> */ inline void SetPreset(Preset&& value) { m_preset = std::move(value); } /** * <p>A section of the response body that provides information about the preset * that is created.</p> */ inline CreatePresetResult& WithPreset(const Preset& value) { SetPreset(value); return *this;} /** * <p>A section of the response body that provides information about the preset * that is created.</p> */ inline CreatePresetResult& WithPreset(Preset&& value) { SetPreset(std::move(value)); return *this;} /** * <p>If the preset settings don't comply with the standards for the video codec * but Elastic Transcoder created the preset, this message explains the reason the * preset settings don't meet the standard. Elastic Transcoder created the preset * because the settings might produce acceptable output.</p> */ inline const Aws::String& GetWarning() const{ return m_warning; } /** * <p>If the preset settings don't comply with the standards for the video codec * but Elastic Transcoder created the preset, this message explains the reason the * preset settings don't meet the standard. Elastic Transcoder created the preset * because the settings might produce acceptable output.</p> */ inline void SetWarning(const Aws::String& value) { m_warning = value; } /** * <p>If the preset settings don't comply with the standards for the video codec * but Elastic Transcoder created the preset, this message explains the reason the * preset settings don't meet the standard. Elastic Transcoder created the preset * because the settings might produce acceptable output.</p> */ inline void SetWarning(Aws::String&& value) { m_warning = std::move(value); } /** * <p>If the preset settings don't comply with the standards for the video codec * but Elastic Transcoder created the preset, this message explains the reason the * preset settings don't meet the standard. Elastic Transcoder created the preset * because the settings might produce acceptable output.</p> */ inline void SetWarning(const char* value) { m_warning.assign(value); } /** * <p>If the preset settings don't comply with the standards for the video codec * but Elastic Transcoder created the preset, this message explains the reason the * preset settings don't meet the standard. Elastic Transcoder created the preset * because the settings might produce acceptable output.</p> */ inline CreatePresetResult& WithWarning(const Aws::String& value) { SetWarning(value); return *this;} /** * <p>If the preset settings don't comply with the standards for the video codec * but Elastic Transcoder created the preset, this message explains the reason the * preset settings don't meet the standard. Elastic Transcoder created the preset * because the settings might produce acceptable output.</p> */ inline CreatePresetResult& WithWarning(Aws::String&& value) { SetWarning(std::move(value)); return *this;} /** * <p>If the preset settings don't comply with the standards for the video codec * but Elastic Transcoder created the preset, this message explains the reason the * preset settings don't meet the standard. Elastic Transcoder created the preset * because the settings might produce acceptable output.</p> */ inline CreatePresetResult& WithWarning(const char* value) { SetWarning(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 CreatePresetResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreatePresetResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreatePresetResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Preset m_preset; Aws::String m_warning; Aws::String m_requestId; }; } // namespace Model } // namespace ElasticTranscoder } // namespace Aws