/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include See Also:
AWS
* API Reference
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