/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace ElasticTranscoder { namespace Model { /** *

The ReadJobResponse structure.

See Also:

AWS * API Reference

*/ class AWS_ELASTICTRANSCODER_API ReadJobResult { public: ReadJobResult(); ReadJobResult(const Aws::AmazonWebServiceResult& result); ReadJobResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A section of the response body that provides information about the job.

*/ inline const Job& GetJob() const{ return m_job; } /** *

A section of the response body that provides information about the job.

*/ inline void SetJob(const Job& value) { m_job = value; } /** *

A section of the response body that provides information about the job.

*/ inline void SetJob(Job&& value) { m_job = std::move(value); } /** *

A section of the response body that provides information about the job.

*/ inline ReadJobResult& WithJob(const Job& value) { SetJob(value); return *this;} /** *

A section of the response body that provides information about the job.

*/ inline ReadJobResult& WithJob(Job&& value) { SetJob(std::move(value)); return *this;} private: Job m_job; }; } // namespace Model } // namespace ElasticTranscoder } // namespace Aws