/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Deletes the specified report.See Also:
AWS
* API Reference
The name of the report that you want to delete. The name must be unique, is * case sensitive, and can't include spaces.
*/ inline const Aws::String& GetReportName() const{ return m_reportName; } /** *The name of the report that you want to delete. The name must be unique, is * case sensitive, and can't include spaces.
*/ inline bool ReportNameHasBeenSet() const { return m_reportNameHasBeenSet; } /** *The name of the report that you want to delete. The name must be unique, is * case sensitive, and can't include spaces.
*/ inline void SetReportName(const Aws::String& value) { m_reportNameHasBeenSet = true; m_reportName = value; } /** *The name of the report that you want to delete. The name must be unique, is * case sensitive, and can't include spaces.
*/ inline void SetReportName(Aws::String&& value) { m_reportNameHasBeenSet = true; m_reportName = std::move(value); } /** *The name of the report that you want to delete. The name must be unique, is * case sensitive, and can't include spaces.
*/ inline void SetReportName(const char* value) { m_reportNameHasBeenSet = true; m_reportName.assign(value); } /** *The name of the report that you want to delete. The name must be unique, is * case sensitive, and can't include spaces.
*/ inline DeleteReportDefinitionRequest& WithReportName(const Aws::String& value) { SetReportName(value); return *this;} /** *The name of the report that you want to delete. The name must be unique, is * case sensitive, and can't include spaces.
*/ inline DeleteReportDefinitionRequest& WithReportName(Aws::String&& value) { SetReportName(std::move(value)); return *this;} /** *The name of the report that you want to delete. The name must be unique, is * case sensitive, and can't include spaces.
*/ inline DeleteReportDefinitionRequest& WithReportName(const char* value) { SetReportName(value); return *this;} private: Aws::String m_reportName; bool m_reportNameHasBeenSet = false; }; } // namespace Model } // namespace CostandUsageReportService } // namespace Aws