/** * 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 TranscribeService { namespace Model { /** */ class DeleteCallAnalyticsCategoryRequest : public TranscribeServiceRequest { public: AWS_TRANSCRIBESERVICE_API DeleteCallAnalyticsCategoryRequest(); // 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 "DeleteCallAnalyticsCategory"; } AWS_TRANSCRIBESERVICE_API Aws::String SerializePayload() const override; AWS_TRANSCRIBESERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The name of the Call Analytics category you want to delete. Category names * are case sensitive.

*/ inline const Aws::String& GetCategoryName() const{ return m_categoryName; } /** *

The name of the Call Analytics category you want to delete. Category names * are case sensitive.

*/ inline bool CategoryNameHasBeenSet() const { return m_categoryNameHasBeenSet; } /** *

The name of the Call Analytics category you want to delete. Category names * are case sensitive.

*/ inline void SetCategoryName(const Aws::String& value) { m_categoryNameHasBeenSet = true; m_categoryName = value; } /** *

The name of the Call Analytics category you want to delete. Category names * are case sensitive.

*/ inline void SetCategoryName(Aws::String&& value) { m_categoryNameHasBeenSet = true; m_categoryName = std::move(value); } /** *

The name of the Call Analytics category you want to delete. Category names * are case sensitive.

*/ inline void SetCategoryName(const char* value) { m_categoryNameHasBeenSet = true; m_categoryName.assign(value); } /** *

The name of the Call Analytics category you want to delete. Category names * are case sensitive.

*/ inline DeleteCallAnalyticsCategoryRequest& WithCategoryName(const Aws::String& value) { SetCategoryName(value); return *this;} /** *

The name of the Call Analytics category you want to delete. Category names * are case sensitive.

*/ inline DeleteCallAnalyticsCategoryRequest& WithCategoryName(Aws::String&& value) { SetCategoryName(std::move(value)); return *this;} /** *

The name of the Call Analytics category you want to delete. Category names * are case sensitive.

*/ inline DeleteCallAnalyticsCategoryRequest& WithCategoryName(const char* value) { SetCategoryName(value); return *this;} private: Aws::String m_categoryName; bool m_categoryNameHasBeenSet = false; }; } // namespace Model } // namespace TranscribeService } // namespace Aws