/** * 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 SSM { namespace Model { class GetMaintenanceWindowResult { public: AWS_SSM_API GetMaintenanceWindowResult(); AWS_SSM_API GetMaintenanceWindowResult(const Aws::AmazonWebServiceResult& result); AWS_SSM_API GetMaintenanceWindowResult& operator=(const Aws::AmazonWebServiceResult& result); ///@{ /** *

The ID of the created maintenance window.

*/ inline const Aws::String& GetWindowId() const{ return m_windowId; } inline void SetWindowId(const Aws::String& value) { m_windowId = value; } inline void SetWindowId(Aws::String&& value) { m_windowId = std::move(value); } inline void SetWindowId(const char* value) { m_windowId.assign(value); } inline GetMaintenanceWindowResult& WithWindowId(const Aws::String& value) { SetWindowId(value); return *this;} inline GetMaintenanceWindowResult& WithWindowId(Aws::String&& value) { SetWindowId(std::move(value)); return *this;} inline GetMaintenanceWindowResult& WithWindowId(const char* value) { SetWindowId(value); return *this;} ///@} ///@{ /** *

The name of the maintenance window.

*/ inline const Aws::String& GetName() const{ return m_name; } inline void SetName(const Aws::String& value) { m_name = value; } inline void SetName(Aws::String&& value) { m_name = std::move(value); } inline void SetName(const char* value) { m_name.assign(value); } inline GetMaintenanceWindowResult& WithName(const Aws::String& value) { SetName(value); return *this;} inline GetMaintenanceWindowResult& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} inline GetMaintenanceWindowResult& WithName(const char* value) { SetName(value); return *this;} ///@} ///@{ /** *

The description of the maintenance window.

*/ inline const Aws::String& GetDescription() const{ return m_description; } inline void SetDescription(const Aws::String& value) { m_description = value; } inline void SetDescription(Aws::String&& value) { m_description = std::move(value); } inline void SetDescription(const char* value) { m_description.assign(value); } inline GetMaintenanceWindowResult& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} inline GetMaintenanceWindowResult& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} inline GetMaintenanceWindowResult& WithDescription(const char* value) { SetDescription(value); return *this;} ///@} ///@{ /** *

The date and time, in ISO-8601 Extended format, for when the maintenance * window is scheduled to become active. The maintenance window won't run before * this specified time.

*/ inline const Aws::String& GetStartDate() const{ return m_startDate; } inline void SetStartDate(const Aws::String& value) { m_startDate = value; } inline void SetStartDate(Aws::String&& value) { m_startDate = std::move(value); } inline void SetStartDate(const char* value) { m_startDate.assign(value); } inline GetMaintenanceWindowResult& WithStartDate(const Aws::String& value) { SetStartDate(value); return *this;} inline GetMaintenanceWindowResult& WithStartDate(Aws::String&& value) { SetStartDate(std::move(value)); return *this;} inline GetMaintenanceWindowResult& WithStartDate(const char* value) { SetStartDate(value); return *this;} ///@} ///@{ /** *

The date and time, in ISO-8601 Extended format, for when the maintenance * window is scheduled to become inactive. The maintenance window won't run after * this specified time.

*/ inline const Aws::String& GetEndDate() const{ return m_endDate; } inline void SetEndDate(const Aws::String& value) { m_endDate = value; } inline void SetEndDate(Aws::String&& value) { m_endDate = std::move(value); } inline void SetEndDate(const char* value) { m_endDate.assign(value); } inline GetMaintenanceWindowResult& WithEndDate(const Aws::String& value) { SetEndDate(value); return *this;} inline GetMaintenanceWindowResult& WithEndDate(Aws::String&& value) { SetEndDate(std::move(value)); return *this;} inline GetMaintenanceWindowResult& WithEndDate(const char* value) { SetEndDate(value); return *this;} ///@} ///@{ /** *

The schedule of the maintenance window in the form of a cron or rate * expression.

*/ inline const Aws::String& GetSchedule() const{ return m_schedule; } inline void SetSchedule(const Aws::String& value) { m_schedule = value; } inline void SetSchedule(Aws::String&& value) { m_schedule = std::move(value); } inline void SetSchedule(const char* value) { m_schedule.assign(value); } inline GetMaintenanceWindowResult& WithSchedule(const Aws::String& value) { SetSchedule(value); return *this;} inline GetMaintenanceWindowResult& WithSchedule(Aws::String&& value) { SetSchedule(std::move(value)); return *this;} inline GetMaintenanceWindowResult& WithSchedule(const char* value) { SetSchedule(value); return *this;} ///@} ///@{ /** *

The time zone that the scheduled maintenance window executions are based on, * in Internet Assigned Numbers Authority (IANA) format. For example: * "America/Los_Angeles", "UTC", or "Asia/Seoul". For more information, see the Time Zone Database on the IANA * website.

*/ inline const Aws::String& GetScheduleTimezone() const{ return m_scheduleTimezone; } inline void SetScheduleTimezone(const Aws::String& value) { m_scheduleTimezone = value; } inline void SetScheduleTimezone(Aws::String&& value) { m_scheduleTimezone = std::move(value); } inline void SetScheduleTimezone(const char* value) { m_scheduleTimezone.assign(value); } inline GetMaintenanceWindowResult& WithScheduleTimezone(const Aws::String& value) { SetScheduleTimezone(value); return *this;} inline GetMaintenanceWindowResult& WithScheduleTimezone(Aws::String&& value) { SetScheduleTimezone(std::move(value)); return *this;} inline GetMaintenanceWindowResult& WithScheduleTimezone(const char* value) { SetScheduleTimezone(value); return *this;} ///@} ///@{ /** *

The number of days to wait to run a maintenance window after the scheduled * cron expression date and time.

*/ inline int GetScheduleOffset() const{ return m_scheduleOffset; } inline void SetScheduleOffset(int value) { m_scheduleOffset = value; } inline GetMaintenanceWindowResult& WithScheduleOffset(int value) { SetScheduleOffset(value); return *this;} ///@} ///@{ /** *

The next time the maintenance window will actually run, taking into account * any specified times for the maintenance window to become active or inactive.

*/ inline const Aws::String& GetNextExecutionTime() const{ return m_nextExecutionTime; } inline void SetNextExecutionTime(const Aws::String& value) { m_nextExecutionTime = value; } inline void SetNextExecutionTime(Aws::String&& value) { m_nextExecutionTime = std::move(value); } inline void SetNextExecutionTime(const char* value) { m_nextExecutionTime.assign(value); } inline GetMaintenanceWindowResult& WithNextExecutionTime(const Aws::String& value) { SetNextExecutionTime(value); return *this;} inline GetMaintenanceWindowResult& WithNextExecutionTime(Aws::String&& value) { SetNextExecutionTime(std::move(value)); return *this;} inline GetMaintenanceWindowResult& WithNextExecutionTime(const char* value) { SetNextExecutionTime(value); return *this;} ///@} ///@{ /** *

The duration of the maintenance window in hours.

*/ inline int GetDuration() const{ return m_duration; } inline void SetDuration(int value) { m_duration = value; } inline GetMaintenanceWindowResult& WithDuration(int value) { SetDuration(value); return *this;} ///@} ///@{ /** *

The number of hours before the end of the maintenance window that Amazon Web * Services Systems Manager stops scheduling new tasks for execution.

*/ inline int GetCutoff() const{ return m_cutoff; } inline void SetCutoff(int value) { m_cutoff = value; } inline GetMaintenanceWindowResult& WithCutoff(int value) { SetCutoff(value); return *this;} ///@} ///@{ /** *

Whether targets must be registered with the maintenance window before tasks * can be defined for those targets.

*/ inline bool GetAllowUnassociatedTargets() const{ return m_allowUnassociatedTargets; } inline void SetAllowUnassociatedTargets(bool value) { m_allowUnassociatedTargets = value; } inline GetMaintenanceWindowResult& WithAllowUnassociatedTargets(bool value) { SetAllowUnassociatedTargets(value); return *this;} ///@} ///@{ /** *

Indicates whether the maintenance window is enabled.

*/ inline bool GetEnabled() const{ return m_enabled; } inline void SetEnabled(bool value) { m_enabled = value; } inline GetMaintenanceWindowResult& WithEnabled(bool value) { SetEnabled(value); return *this;} ///@} ///@{ /** *

The date the maintenance window was created.

*/ inline const Aws::Utils::DateTime& GetCreatedDate() const{ return m_createdDate; } inline void SetCreatedDate(const Aws::Utils::DateTime& value) { m_createdDate = value; } inline void SetCreatedDate(Aws::Utils::DateTime&& value) { m_createdDate = std::move(value); } inline GetMaintenanceWindowResult& WithCreatedDate(const Aws::Utils::DateTime& value) { SetCreatedDate(value); return *this;} inline GetMaintenanceWindowResult& WithCreatedDate(Aws::Utils::DateTime&& value) { SetCreatedDate(std::move(value)); return *this;} ///@} ///@{ /** *

The date the maintenance window was last modified.

*/ inline const Aws::Utils::DateTime& GetModifiedDate() const{ return m_modifiedDate; } inline void SetModifiedDate(const Aws::Utils::DateTime& value) { m_modifiedDate = value; } inline void SetModifiedDate(Aws::Utils::DateTime&& value) { m_modifiedDate = std::move(value); } inline GetMaintenanceWindowResult& WithModifiedDate(const Aws::Utils::DateTime& value) { SetModifiedDate(value); return *this;} inline GetMaintenanceWindowResult& WithModifiedDate(Aws::Utils::DateTime&& value) { SetModifiedDate(std::move(value)); return *this;} ///@} ///@{ inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetMaintenanceWindowResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetMaintenanceWindowResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetMaintenanceWindowResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} ///@} private: Aws::String m_windowId; Aws::String m_name; Aws::String m_description; Aws::String m_startDate; Aws::String m_endDate; Aws::String m_schedule; Aws::String m_scheduleTimezone; int m_scheduleOffset; Aws::String m_nextExecutionTime; int m_duration; int m_cutoff; bool m_allowUnassociatedTargets; bool m_enabled; Aws::Utils::DateTime m_createdDate; Aws::Utils::DateTime m_modifiedDate; Aws::String m_requestId; }; } // namespace Model } // namespace SSM } // namespace Aws