/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace Rekognition { namespace Model { class AWS_REKOGNITION_API DeleteFacesResult { public: DeleteFacesResult(); DeleteFacesResult(const Aws::AmazonWebServiceResult& result); DeleteFacesResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

An array of strings (face IDs) of the faces that were deleted.

*/ inline const Aws::Vector& GetDeletedFaces() const{ return m_deletedFaces; } /** *

An array of strings (face IDs) of the faces that were deleted.

*/ inline void SetDeletedFaces(const Aws::Vector& value) { m_deletedFaces = value; } /** *

An array of strings (face IDs) of the faces that were deleted.

*/ inline void SetDeletedFaces(Aws::Vector&& value) { m_deletedFaces = std::move(value); } /** *

An array of strings (face IDs) of the faces that were deleted.

*/ inline DeleteFacesResult& WithDeletedFaces(const Aws::Vector& value) { SetDeletedFaces(value); return *this;} /** *

An array of strings (face IDs) of the faces that were deleted.

*/ inline DeleteFacesResult& WithDeletedFaces(Aws::Vector&& value) { SetDeletedFaces(std::move(value)); return *this;} /** *

An array of strings (face IDs) of the faces that were deleted.

*/ inline DeleteFacesResult& AddDeletedFaces(const Aws::String& value) { m_deletedFaces.push_back(value); return *this; } /** *

An array of strings (face IDs) of the faces that were deleted.

*/ inline DeleteFacesResult& AddDeletedFaces(Aws::String&& value) { m_deletedFaces.push_back(std::move(value)); return *this; } /** *

An array of strings (face IDs) of the faces that were deleted.

*/ inline DeleteFacesResult& AddDeletedFaces(const char* value) { m_deletedFaces.push_back(value); return *this; } private: Aws::Vector m_deletedFaces; }; } // namespace Model } // namespace Rekognition } // namespace Aws