/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains metadata like FaceId, UserID, and Reasons, for a face that was
* unsuccessfully deleted.See Also:
AWS
* API Reference
A unique identifier assigned to the face.
*/ inline const Aws::String& GetFaceId() const{ return m_faceId; } /** *A unique identifier assigned to the face.
*/ inline bool FaceIdHasBeenSet() const { return m_faceIdHasBeenSet; } /** *A unique identifier assigned to the face.
*/ inline void SetFaceId(const Aws::String& value) { m_faceIdHasBeenSet = true; m_faceId = value; } /** *A unique identifier assigned to the face.
*/ inline void SetFaceId(Aws::String&& value) { m_faceIdHasBeenSet = true; m_faceId = std::move(value); } /** *A unique identifier assigned to the face.
*/ inline void SetFaceId(const char* value) { m_faceIdHasBeenSet = true; m_faceId.assign(value); } /** *A unique identifier assigned to the face.
*/ inline UnsuccessfulFaceDeletion& WithFaceId(const Aws::String& value) { SetFaceId(value); return *this;} /** *A unique identifier assigned to the face.
*/ inline UnsuccessfulFaceDeletion& WithFaceId(Aws::String&& value) { SetFaceId(std::move(value)); return *this;} /** *A unique identifier assigned to the face.
*/ inline UnsuccessfulFaceDeletion& WithFaceId(const char* value) { SetFaceId(value); return *this;} /** *A provided ID for the UserID. Unique within the collection.
*/ inline const Aws::String& GetUserId() const{ return m_userId; } /** *A provided ID for the UserID. Unique within the collection.
*/ inline bool UserIdHasBeenSet() const { return m_userIdHasBeenSet; } /** *A provided ID for the UserID. Unique within the collection.
*/ inline void SetUserId(const Aws::String& value) { m_userIdHasBeenSet = true; m_userId = value; } /** *A provided ID for the UserID. Unique within the collection.
*/ inline void SetUserId(Aws::String&& value) { m_userIdHasBeenSet = true; m_userId = std::move(value); } /** *A provided ID for the UserID. Unique within the collection.
*/ inline void SetUserId(const char* value) { m_userIdHasBeenSet = true; m_userId.assign(value); } /** *A provided ID for the UserID. Unique within the collection.
*/ inline UnsuccessfulFaceDeletion& WithUserId(const Aws::String& value) { SetUserId(value); return *this;} /** *A provided ID for the UserID. Unique within the collection.
*/ inline UnsuccessfulFaceDeletion& WithUserId(Aws::String&& value) { SetUserId(std::move(value)); return *this;} /** *A provided ID for the UserID. Unique within the collection.
*/ inline UnsuccessfulFaceDeletion& WithUserId(const char* value) { SetUserId(value); return *this;} /** *The reason why the deletion was unsuccessful.
*/ inline const Aws::VectorThe reason why the deletion was unsuccessful.
*/ inline bool ReasonsHasBeenSet() const { return m_reasonsHasBeenSet; } /** *The reason why the deletion was unsuccessful.
*/ inline void SetReasons(const Aws::VectorThe reason why the deletion was unsuccessful.
*/ inline void SetReasons(Aws::VectorThe reason why the deletion was unsuccessful.
*/ inline UnsuccessfulFaceDeletion& WithReasons(const Aws::VectorThe reason why the deletion was unsuccessful.
*/ inline UnsuccessfulFaceDeletion& WithReasons(Aws::VectorThe reason why the deletion was unsuccessful.
*/ inline UnsuccessfulFaceDeletion& AddReasons(const UnsuccessfulFaceDeletionReason& value) { m_reasonsHasBeenSet = true; m_reasons.push_back(value); return *this; } /** *The reason why the deletion was unsuccessful.
*/ inline UnsuccessfulFaceDeletion& AddReasons(UnsuccessfulFaceDeletionReason&& value) { m_reasonsHasBeenSet = true; m_reasons.push_back(std::move(value)); return *this; } private: Aws::String m_faceId; bool m_faceIdHasBeenSet = false; Aws::String m_userId; bool m_userIdHasBeenSet = false; Aws::Vector