/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the result of a schedule run request.See Also:
* AWS
* API Reference
Information about the scheduled run.
*/ inline const Run& GetRun() const{ return m_run; } /** *Information about the scheduled run.
*/ inline void SetRun(const Run& value) { m_run = value; } /** *Information about the scheduled run.
*/ inline void SetRun(Run&& value) { m_run = std::move(value); } /** *Information about the scheduled run.
*/ inline ScheduleRunResult& WithRun(const Run& value) { SetRun(value); return *this;} /** *Information about the scheduled run.
*/ inline ScheduleRunResult& WithRun(Run&& value) { SetRun(std::move(value)); return *this;} private: Run m_run; }; } // namespace Model } // namespace DeviceFarm } // namespace Aws