/** * 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 CancelMaintenanceWindowExecutionResult { public: CancelMaintenanceWindowExecutionResult(); CancelMaintenanceWindowExecutionResult(const Aws::AmazonWebServiceResult& result); CancelMaintenanceWindowExecutionResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The ID of the maintenance window execution that has been stopped.

*/ inline const Aws::String& GetWindowExecutionId() const{ return m_windowExecutionId; } /** *

The ID of the maintenance window execution that has been stopped.

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

The ID of the maintenance window execution that has been stopped.

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

The ID of the maintenance window execution that has been stopped.

*/ inline void SetWindowExecutionId(const char* value) { m_windowExecutionId.assign(value); } /** *

The ID of the maintenance window execution that has been stopped.

*/ inline CancelMaintenanceWindowExecutionResult& WithWindowExecutionId(const Aws::String& value) { SetWindowExecutionId(value); return *this;} /** *

The ID of the maintenance window execution that has been stopped.

*/ inline CancelMaintenanceWindowExecutionResult& WithWindowExecutionId(Aws::String&& value) { SetWindowExecutionId(std::move(value)); return *this;} /** *

The ID of the maintenance window execution that has been stopped.

*/ inline CancelMaintenanceWindowExecutionResult& WithWindowExecutionId(const char* value) { SetWindowExecutionId(value); return *this;} private: Aws::String m_windowExecutionId; }; } // namespace Model } // namespace SSM } // namespace Aws