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

The details of a Job node present in the workflow.

See Also:

* AWS * API Reference

*/ class JobNodeDetails { public: AWS_GLUE_API JobNodeDetails(); AWS_GLUE_API JobNodeDetails(Aws::Utils::Json::JsonView jsonValue); AWS_GLUE_API JobNodeDetails& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_GLUE_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The information for the job runs represented by the job node.

*/ inline const Aws::Vector& GetJobRuns() const{ return m_jobRuns; } /** *

The information for the job runs represented by the job node.

*/ inline bool JobRunsHasBeenSet() const { return m_jobRunsHasBeenSet; } /** *

The information for the job runs represented by the job node.

*/ inline void SetJobRuns(const Aws::Vector& value) { m_jobRunsHasBeenSet = true; m_jobRuns = value; } /** *

The information for the job runs represented by the job node.

*/ inline void SetJobRuns(Aws::Vector&& value) { m_jobRunsHasBeenSet = true; m_jobRuns = std::move(value); } /** *

The information for the job runs represented by the job node.

*/ inline JobNodeDetails& WithJobRuns(const Aws::Vector& value) { SetJobRuns(value); return *this;} /** *

The information for the job runs represented by the job node.

*/ inline JobNodeDetails& WithJobRuns(Aws::Vector&& value) { SetJobRuns(std::move(value)); return *this;} /** *

The information for the job runs represented by the job node.

*/ inline JobNodeDetails& AddJobRuns(const JobRun& value) { m_jobRunsHasBeenSet = true; m_jobRuns.push_back(value); return *this; } /** *

The information for the job runs represented by the job node.

*/ inline JobNodeDetails& AddJobRuns(JobRun&& value) { m_jobRunsHasBeenSet = true; m_jobRuns.push_back(std::move(value)); return *this; } private: Aws::Vector m_jobRuns; bool m_jobRunsHasBeenSet = false; }; } // namespace Model } // namespace Glue } // namespace Aws