/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace kendra { namespace Model { /** */ class BatchDeleteFeaturedResultsSetRequest : public KendraRequest { public: AWS_KENDRA_API BatchDeleteFeaturedResultsSetRequest(); // 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 "BatchDeleteFeaturedResultsSet"; } AWS_KENDRA_API Aws::String SerializePayload() const override; AWS_KENDRA_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The identifier of the index used for featuring results.

*/ inline const Aws::String& GetIndexId() const{ return m_indexId; } /** *

The identifier of the index used for featuring results.

*/ inline bool IndexIdHasBeenSet() const { return m_indexIdHasBeenSet; } /** *

The identifier of the index used for featuring results.

*/ inline void SetIndexId(const Aws::String& value) { m_indexIdHasBeenSet = true; m_indexId = value; } /** *

The identifier of the index used for featuring results.

*/ inline void SetIndexId(Aws::String&& value) { m_indexIdHasBeenSet = true; m_indexId = std::move(value); } /** *

The identifier of the index used for featuring results.

*/ inline void SetIndexId(const char* value) { m_indexIdHasBeenSet = true; m_indexId.assign(value); } /** *

The identifier of the index used for featuring results.

*/ inline BatchDeleteFeaturedResultsSetRequest& WithIndexId(const Aws::String& value) { SetIndexId(value); return *this;} /** *

The identifier of the index used for featuring results.

*/ inline BatchDeleteFeaturedResultsSetRequest& WithIndexId(Aws::String&& value) { SetIndexId(std::move(value)); return *this;} /** *

The identifier of the index used for featuring results.

*/ inline BatchDeleteFeaturedResultsSetRequest& WithIndexId(const char* value) { SetIndexId(value); return *this;} /** *

The identifiers of the featured results sets that you want to delete.

*/ inline const Aws::Vector& GetFeaturedResultsSetIds() const{ return m_featuredResultsSetIds; } /** *

The identifiers of the featured results sets that you want to delete.

*/ inline bool FeaturedResultsSetIdsHasBeenSet() const { return m_featuredResultsSetIdsHasBeenSet; } /** *

The identifiers of the featured results sets that you want to delete.

*/ inline void SetFeaturedResultsSetIds(const Aws::Vector& value) { m_featuredResultsSetIdsHasBeenSet = true; m_featuredResultsSetIds = value; } /** *

The identifiers of the featured results sets that you want to delete.

*/ inline void SetFeaturedResultsSetIds(Aws::Vector&& value) { m_featuredResultsSetIdsHasBeenSet = true; m_featuredResultsSetIds = std::move(value); } /** *

The identifiers of the featured results sets that you want to delete.

*/ inline BatchDeleteFeaturedResultsSetRequest& WithFeaturedResultsSetIds(const Aws::Vector& value) { SetFeaturedResultsSetIds(value); return *this;} /** *

The identifiers of the featured results sets that you want to delete.

*/ inline BatchDeleteFeaturedResultsSetRequest& WithFeaturedResultsSetIds(Aws::Vector&& value) { SetFeaturedResultsSetIds(std::move(value)); return *this;} /** *

The identifiers of the featured results sets that you want to delete.

*/ inline BatchDeleteFeaturedResultsSetRequest& AddFeaturedResultsSetIds(const Aws::String& value) { m_featuredResultsSetIdsHasBeenSet = true; m_featuredResultsSetIds.push_back(value); return *this; } /** *

The identifiers of the featured results sets that you want to delete.

*/ inline BatchDeleteFeaturedResultsSetRequest& AddFeaturedResultsSetIds(Aws::String&& value) { m_featuredResultsSetIdsHasBeenSet = true; m_featuredResultsSetIds.push_back(std::move(value)); return *this; } /** *

The identifiers of the featured results sets that you want to delete.

*/ inline BatchDeleteFeaturedResultsSetRequest& AddFeaturedResultsSetIds(const char* value) { m_featuredResultsSetIdsHasBeenSet = true; m_featuredResultsSetIds.push_back(value); return *this; } private: Aws::String m_indexId; bool m_indexIdHasBeenSet = false; Aws::Vector m_featuredResultsSetIds; bool m_featuredResultsSetIdsHasBeenSet = false; }; } // namespace Model } // namespace kendra } // namespace Aws