/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace MediaLive { namespace Model { /** * Placeholder documentation for BatchUpdateScheduleResponse

See Also:

* AWS * API Reference

*/ class AWS_MEDIALIVE_API BatchUpdateScheduleResult { public: BatchUpdateScheduleResult(); BatchUpdateScheduleResult(const Aws::AmazonWebServiceResult& result); BatchUpdateScheduleResult& operator=(const Aws::AmazonWebServiceResult& result); /** * Schedule actions created in the schedule. */ inline const BatchScheduleActionCreateResult& GetCreates() const{ return m_creates; } /** * Schedule actions created in the schedule. */ inline void SetCreates(const BatchScheduleActionCreateResult& value) { m_creates = value; } /** * Schedule actions created in the schedule. */ inline void SetCreates(BatchScheduleActionCreateResult&& value) { m_creates = std::move(value); } /** * Schedule actions created in the schedule. */ inline BatchUpdateScheduleResult& WithCreates(const BatchScheduleActionCreateResult& value) { SetCreates(value); return *this;} /** * Schedule actions created in the schedule. */ inline BatchUpdateScheduleResult& WithCreates(BatchScheduleActionCreateResult&& value) { SetCreates(std::move(value)); return *this;} /** * Schedule actions deleted from the schedule. */ inline const BatchScheduleActionDeleteResult& GetDeletes() const{ return m_deletes; } /** * Schedule actions deleted from the schedule. */ inline void SetDeletes(const BatchScheduleActionDeleteResult& value) { m_deletes = value; } /** * Schedule actions deleted from the schedule. */ inline void SetDeletes(BatchScheduleActionDeleteResult&& value) { m_deletes = std::move(value); } /** * Schedule actions deleted from the schedule. */ inline BatchUpdateScheduleResult& WithDeletes(const BatchScheduleActionDeleteResult& value) { SetDeletes(value); return *this;} /** * Schedule actions deleted from the schedule. */ inline BatchUpdateScheduleResult& WithDeletes(BatchScheduleActionDeleteResult&& value) { SetDeletes(std::move(value)); return *this;} private: BatchScheduleActionCreateResult m_creates; BatchScheduleActionDeleteResult m_deletes; }; } // namespace Model } // namespace MediaLive } // namespace Aws