/** * 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 Glue { namespace Model { class AWS_GLUE_API GetJobRunResult { public: GetJobRunResult(); GetJobRunResult(const Aws::AmazonWebServiceResult& result); GetJobRunResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The requested job-run metadata.

*/ inline const JobRun& GetJobRun() const{ return m_jobRun; } /** *

The requested job-run metadata.

*/ inline void SetJobRun(const JobRun& value) { m_jobRun = value; } /** *

The requested job-run metadata.

*/ inline void SetJobRun(JobRun&& value) { m_jobRun = std::move(value); } /** *

The requested job-run metadata.

*/ inline GetJobRunResult& WithJobRun(const JobRun& value) { SetJobRun(value); return *this;} /** *

The requested job-run metadata.

*/ inline GetJobRunResult& WithJobRun(JobRun&& value) { SetJobRun(std::move(value)); return *this;} private: JobRun m_jobRun; }; } // namespace Model } // namespace Glue } // namespace Aws