/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about a scheduled execution for a maintenance
* window.See Also:
AWS
* API Reference
The ID of the maintenance window to be run.
*/ inline const Aws::String& GetWindowId() const{ return m_windowId; } /** *The ID of the maintenance window to be run.
*/ inline bool WindowIdHasBeenSet() const { return m_windowIdHasBeenSet; } /** *The ID of the maintenance window to be run.
*/ inline void SetWindowId(const Aws::String& value) { m_windowIdHasBeenSet = true; m_windowId = value; } /** *The ID of the maintenance window to be run.
*/ inline void SetWindowId(Aws::String&& value) { m_windowIdHasBeenSet = true; m_windowId = std::move(value); } /** *The ID of the maintenance window to be run.
*/ inline void SetWindowId(const char* value) { m_windowIdHasBeenSet = true; m_windowId.assign(value); } /** *The ID of the maintenance window to be run.
*/ inline ScheduledWindowExecution& WithWindowId(const Aws::String& value) { SetWindowId(value); return *this;} /** *The ID of the maintenance window to be run.
*/ inline ScheduledWindowExecution& WithWindowId(Aws::String&& value) { SetWindowId(std::move(value)); return *this;} /** *The ID of the maintenance window to be run.
*/ inline ScheduledWindowExecution& WithWindowId(const char* value) { SetWindowId(value); return *this;} /** *The name of the maintenance window to be run.
*/ inline const Aws::String& GetName() const{ return m_name; } /** *The name of the maintenance window to be run.
*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *The name of the maintenance window to be run.
*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *The name of the maintenance window to be run.
*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *The name of the maintenance window to be run.
*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *The name of the maintenance window to be run.
*/ inline ScheduledWindowExecution& WithName(const Aws::String& value) { SetName(value); return *this;} /** *The name of the maintenance window to be run.
*/ inline ScheduledWindowExecution& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *The name of the maintenance window to be run.
*/ inline ScheduledWindowExecution& WithName(const char* value) { SetName(value); return *this;} /** *The time, in ISO-8601 Extended format, that the maintenance window is * scheduled to be run.
*/ inline const Aws::String& GetExecutionTime() const{ return m_executionTime; } /** *The time, in ISO-8601 Extended format, that the maintenance window is * scheduled to be run.
*/ inline bool ExecutionTimeHasBeenSet() const { return m_executionTimeHasBeenSet; } /** *The time, in ISO-8601 Extended format, that the maintenance window is * scheduled to be run.
*/ inline void SetExecutionTime(const Aws::String& value) { m_executionTimeHasBeenSet = true; m_executionTime = value; } /** *The time, in ISO-8601 Extended format, that the maintenance window is * scheduled to be run.
*/ inline void SetExecutionTime(Aws::String&& value) { m_executionTimeHasBeenSet = true; m_executionTime = std::move(value); } /** *The time, in ISO-8601 Extended format, that the maintenance window is * scheduled to be run.
*/ inline void SetExecutionTime(const char* value) { m_executionTimeHasBeenSet = true; m_executionTime.assign(value); } /** *The time, in ISO-8601 Extended format, that the maintenance window is * scheduled to be run.
*/ inline ScheduledWindowExecution& WithExecutionTime(const Aws::String& value) { SetExecutionTime(value); return *this;} /** *The time, in ISO-8601 Extended format, that the maintenance window is * scheduled to be run.
*/ inline ScheduledWindowExecution& WithExecutionTime(Aws::String&& value) { SetExecutionTime(std::move(value)); return *this;} /** *The time, in ISO-8601 Extended format, that the maintenance window is * scheduled to be run.
*/ inline ScheduledWindowExecution& WithExecutionTime(const char* value) { SetExecutionTime(value); return *this;} private: Aws::String m_windowId; bool m_windowIdHasBeenSet = false; Aws::String m_name; bool m_nameHasBeenSet = false; Aws::String m_executionTime; bool m_executionTimeHasBeenSet = false; }; } // namespace Model } // namespace SSM } // namespace Aws