/** * 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 Backup { namespace Model { /** */ class DeleteReportPlanRequest : public BackupRequest { public: AWS_BACKUP_API DeleteReportPlanRequest(); // 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 "DeleteReportPlan"; } AWS_BACKUP_API Aws::String SerializePayload() const override; /** *

The unique name of a report plan.

*/ inline const Aws::String& GetReportPlanName() const{ return m_reportPlanName; } /** *

The unique name of a report plan.

*/ inline bool ReportPlanNameHasBeenSet() const { return m_reportPlanNameHasBeenSet; } /** *

The unique name of a report plan.

*/ inline void SetReportPlanName(const Aws::String& value) { m_reportPlanNameHasBeenSet = true; m_reportPlanName = value; } /** *

The unique name of a report plan.

*/ inline void SetReportPlanName(Aws::String&& value) { m_reportPlanNameHasBeenSet = true; m_reportPlanName = std::move(value); } /** *

The unique name of a report plan.

*/ inline void SetReportPlanName(const char* value) { m_reportPlanNameHasBeenSet = true; m_reportPlanName.assign(value); } /** *

The unique name of a report plan.

*/ inline DeleteReportPlanRequest& WithReportPlanName(const Aws::String& value) { SetReportPlanName(value); return *this;} /** *

The unique name of a report plan.

*/ inline DeleteReportPlanRequest& WithReportPlanName(Aws::String&& value) { SetReportPlanName(std::move(value)); return *this;} /** *

The unique name of a report plan.

*/ inline DeleteReportPlanRequest& WithReportPlanName(const char* value) { SetReportPlanName(value); return *this;} private: Aws::String m_reportPlanName; bool m_reportPlanNameHasBeenSet = false; }; } // namespace Model } // namespace Backup } // namespace Aws