/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes an execution job for an Amplify app. See Also:
* AWS API
* Reference
Describes the summary for an execution job for an Amplify app.
*/ inline const JobSummary& GetSummary() const{ return m_summary; } /** *Describes the summary for an execution job for an Amplify app.
*/ inline bool SummaryHasBeenSet() const { return m_summaryHasBeenSet; } /** *Describes the summary for an execution job for an Amplify app.
*/ inline void SetSummary(const JobSummary& value) { m_summaryHasBeenSet = true; m_summary = value; } /** *Describes the summary for an execution job for an Amplify app.
*/ inline void SetSummary(JobSummary&& value) { m_summaryHasBeenSet = true; m_summary = std::move(value); } /** *Describes the summary for an execution job for an Amplify app.
*/ inline Job& WithSummary(const JobSummary& value) { SetSummary(value); return *this;} /** *Describes the summary for an execution job for an Amplify app.
*/ inline Job& WithSummary(JobSummary&& value) { SetSummary(std::move(value)); return *this;} /** *The execution steps for an execution job, for an Amplify app.
*/ inline const Aws::VectorThe execution steps for an execution job, for an Amplify app.
*/ inline bool StepsHasBeenSet() const { return m_stepsHasBeenSet; } /** *The execution steps for an execution job, for an Amplify app.
*/ inline void SetSteps(const Aws::VectorThe execution steps for an execution job, for an Amplify app.
*/ inline void SetSteps(Aws::VectorThe execution steps for an execution job, for an Amplify app.
*/ inline Job& WithSteps(const Aws::VectorThe execution steps for an execution job, for an Amplify app.
*/ inline Job& WithSteps(Aws::VectorThe execution steps for an execution job, for an Amplify app.
*/ inline Job& AddSteps(const Step& value) { m_stepsHasBeenSet = true; m_steps.push_back(value); return *this; } /** *The execution steps for an execution job, for an Amplify app.
*/ inline Job& AddSteps(Step&& value) { m_stepsHasBeenSet = true; m_steps.push_back(std::move(value)); return *this; } private: JobSummary m_summary; bool m_summaryHasBeenSet = false; Aws::Vector