/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Displays the next seven maintenance window occurrences and their start
* times.See Also:
AWS
* API Reference
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