/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace SSM { namespace Model { /** */ class GetMaintenanceWindowTaskRequest : public SSMRequest { public: AWS_SSM_API GetMaintenanceWindowTaskRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "GetMaintenanceWindowTask"; } AWS_SSM_API Aws::String SerializePayload() const override; AWS_SSM_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The maintenance window ID that includes the task to retrieve.

*/ inline const Aws::String& GetWindowId() const{ return m_windowId; } /** *

The maintenance window ID that includes the task to retrieve.

*/ inline bool WindowIdHasBeenSet() const { return m_windowIdHasBeenSet; } /** *

The maintenance window ID that includes the task to retrieve.

*/ inline void SetWindowId(const Aws::String& value) { m_windowIdHasBeenSet = true; m_windowId = value; } /** *

The maintenance window ID that includes the task to retrieve.

*/ inline void SetWindowId(Aws::String&& value) { m_windowIdHasBeenSet = true; m_windowId = std::move(value); } /** *

The maintenance window ID that includes the task to retrieve.

*/ inline void SetWindowId(const char* value) { m_windowIdHasBeenSet = true; m_windowId.assign(value); } /** *

The maintenance window ID that includes the task to retrieve.

*/ inline GetMaintenanceWindowTaskRequest& WithWindowId(const Aws::String& value) { SetWindowId(value); return *this;} /** *

The maintenance window ID that includes the task to retrieve.

*/ inline GetMaintenanceWindowTaskRequest& WithWindowId(Aws::String&& value) { SetWindowId(std::move(value)); return *this;} /** *

The maintenance window ID that includes the task to retrieve.

*/ inline GetMaintenanceWindowTaskRequest& WithWindowId(const char* value) { SetWindowId(value); return *this;} /** *

The maintenance window task ID to retrieve.

*/ inline const Aws::String& GetWindowTaskId() const{ return m_windowTaskId; } /** *

The maintenance window task ID to retrieve.

*/ inline bool WindowTaskIdHasBeenSet() const { return m_windowTaskIdHasBeenSet; } /** *

The maintenance window task ID to retrieve.

*/ inline void SetWindowTaskId(const Aws::String& value) { m_windowTaskIdHasBeenSet = true; m_windowTaskId = value; } /** *

The maintenance window task ID to retrieve.

*/ inline void SetWindowTaskId(Aws::String&& value) { m_windowTaskIdHasBeenSet = true; m_windowTaskId = std::move(value); } /** *

The maintenance window task ID to retrieve.

*/ inline void SetWindowTaskId(const char* value) { m_windowTaskIdHasBeenSet = true; m_windowTaskId.assign(value); } /** *

The maintenance window task ID to retrieve.

*/ inline GetMaintenanceWindowTaskRequest& WithWindowTaskId(const Aws::String& value) { SetWindowTaskId(value); return *this;} /** *

The maintenance window task ID to retrieve.

*/ inline GetMaintenanceWindowTaskRequest& WithWindowTaskId(Aws::String&& value) { SetWindowTaskId(std::move(value)); return *this;} /** *

The maintenance window task ID to retrieve.

*/ inline GetMaintenanceWindowTaskRequest& WithWindowTaskId(const char* value) { SetWindowTaskId(value); return *this;} private: Aws::String m_windowId; bool m_windowIdHasBeenSet = false; Aws::String m_windowTaskId; bool m_windowTaskIdHasBeenSet = false; }; } // namespace Model } // namespace SSM } // namespace Aws