/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The result structure for the run job request. See Also:
AWS
* API Reference
The summary for the job.
*/ inline const JobSummary& GetJobSummary() const{ return m_jobSummary; } /** *The summary for the job.
*/ inline void SetJobSummary(const JobSummary& value) { m_jobSummary = value; } /** *The summary for the job.
*/ inline void SetJobSummary(JobSummary&& value) { m_jobSummary = std::move(value); } /** *The summary for the job.
*/ inline StartJobResult& WithJobSummary(const JobSummary& value) { SetJobSummary(value); return *this;} /** *The summary for the job.
*/ inline StartJobResult& WithJobSummary(JobSummary&& value) { SetJobSummary(std::move(value)); return *this;} private: JobSummary m_jobSummary; }; } // namespace Model } // namespace Amplify } // namespace Aws