/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace SSM { namespace Model { class AWS_SSM_API CreateMaintenanceWindowResult { public: CreateMaintenanceWindowResult(); CreateMaintenanceWindowResult(const Aws::AmazonWebServiceResult& result); CreateMaintenanceWindowResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The ID of the created maintenance window.

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

The ID of the created maintenance window.

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

The ID of the created maintenance window.

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

The ID of the created maintenance window.

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

The ID of the created maintenance window.

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

The ID of the created maintenance window.

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

The ID of the created maintenance window.

*/ inline CreateMaintenanceWindowResult& WithWindowId(const char* value) { SetWindowId(value); return *this;} private: Aws::String m_windowId; }; } // namespace Model } // namespace SSM } // namespace Aws