/** * 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 Amplify { namespace Model { /** *

The result structure for the start a deployment request.

See * Also:

AWS * API Reference

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

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 StartDeploymentResult& WithJobSummary(const JobSummary& value) { SetJobSummary(value); return *this;} /** *

The summary for the job.

*/ inline StartDeploymentResult& WithJobSummary(JobSummary&& value) { SetJobSummary(std::move(value)); return *this;} private: JobSummary m_jobSummary; }; } // namespace Model } // namespace Amplify } // namespace Aws