/** * 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 DatabaseMigrationService { namespace Model { /** *

See Also:

AWS * API Reference

*/ class AWS_DATABASEMIGRATIONSERVICE_API ApplyPendingMaintenanceActionResult { public: ApplyPendingMaintenanceActionResult(); ApplyPendingMaintenanceActionResult(const Aws::AmazonWebServiceResult& result); ApplyPendingMaintenanceActionResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The AWS DMS resource that the pending maintenance action will be applied * to.

*/ inline const ResourcePendingMaintenanceActions& GetResourcePendingMaintenanceActions() const{ return m_resourcePendingMaintenanceActions; } /** *

The AWS DMS resource that the pending maintenance action will be applied * to.

*/ inline void SetResourcePendingMaintenanceActions(const ResourcePendingMaintenanceActions& value) { m_resourcePendingMaintenanceActions = value; } /** *

The AWS DMS resource that the pending maintenance action will be applied * to.

*/ inline void SetResourcePendingMaintenanceActions(ResourcePendingMaintenanceActions&& value) { m_resourcePendingMaintenanceActions = std::move(value); } /** *

The AWS DMS resource that the pending maintenance action will be applied * to.

*/ inline ApplyPendingMaintenanceActionResult& WithResourcePendingMaintenanceActions(const ResourcePendingMaintenanceActions& value) { SetResourcePendingMaintenanceActions(value); return *this;} /** *

The AWS DMS resource that the pending maintenance action will be applied * to.

*/ inline ApplyPendingMaintenanceActionResult& WithResourcePendingMaintenanceActions(ResourcePendingMaintenanceActions&& value) { SetResourcePendingMaintenanceActions(std::move(value)); return *this;} private: ResourcePendingMaintenanceActions m_resourcePendingMaintenanceActions; }; } // namespace Model } // namespace DatabaseMigrationService } // namespace Aws