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

Displays the next seven maintenance window occurrences and their start * times.

See Also:

AWS * API Reference

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

Displays the start times of the next seven maintenance window * occurrences.

*/ inline const Aws::String& GetStartTime() const{ return m_startTime; } /** *

Displays the start times of the next seven maintenance window * occurrences.

*/ inline bool StartTimeHasBeenSet() const { return m_startTimeHasBeenSet; } /** *

Displays the start times of the next seven maintenance window * occurrences.

*/ inline void SetStartTime(const Aws::String& value) { m_startTimeHasBeenSet = true; m_startTime = value; } /** *

Displays the start times of the next seven maintenance window * occurrences.

*/ inline void SetStartTime(Aws::String&& value) { m_startTimeHasBeenSet = true; m_startTime = std::move(value); } /** *

Displays the start times of the next seven maintenance window * occurrences.

*/ inline void SetStartTime(const char* value) { m_startTimeHasBeenSet = true; m_startTime.assign(value); } /** *

Displays the start times of the next seven maintenance window * occurrences.

*/ inline ScheduledJobRollout& WithStartTime(const Aws::String& value) { SetStartTime(value); return *this;} /** *

Displays the start times of the next seven maintenance window * occurrences.

*/ inline ScheduledJobRollout& WithStartTime(Aws::String&& value) { SetStartTime(std::move(value)); return *this;} /** *

Displays the start times of the next seven maintenance window * occurrences.

*/ inline ScheduledJobRollout& WithStartTime(const char* value) { SetStartTime(value); return *this;} private: Aws::String m_startTime; bool m_startTimeHasBeenSet = false; }; } // namespace Model } // namespace IoT } // namespace Aws