/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace Rekognition { namespace Model { /** *

Provides face metadata for the faces that are disassociated from a specific * UserID.

See Also:

AWS * API Reference

*/ class DisassociatedFace { public: AWS_REKOGNITION_API DisassociatedFace(); AWS_REKOGNITION_API DisassociatedFace(Aws::Utils::Json::JsonView jsonValue); AWS_REKOGNITION_API DisassociatedFace& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_REKOGNITION_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

Unique identifier assigned to the face.

*/ inline const Aws::String& GetFaceId() const{ return m_faceId; } /** *

Unique identifier assigned to the face.

*/ inline bool FaceIdHasBeenSet() const { return m_faceIdHasBeenSet; } /** *

Unique identifier assigned to the face.

*/ inline void SetFaceId(const Aws::String& value) { m_faceIdHasBeenSet = true; m_faceId = value; } /** *

Unique identifier assigned to the face.

*/ inline void SetFaceId(Aws::String&& value) { m_faceIdHasBeenSet = true; m_faceId = std::move(value); } /** *

Unique identifier assigned to the face.

*/ inline void SetFaceId(const char* value) { m_faceIdHasBeenSet = true; m_faceId.assign(value); } /** *

Unique identifier assigned to the face.

*/ inline DisassociatedFace& WithFaceId(const Aws::String& value) { SetFaceId(value); return *this;} /** *

Unique identifier assigned to the face.

*/ inline DisassociatedFace& WithFaceId(Aws::String&& value) { SetFaceId(std::move(value)); return *this;} /** *

Unique identifier assigned to the face.

*/ inline DisassociatedFace& WithFaceId(const char* value) { SetFaceId(value); return *this;} private: Aws::String m_faceId; bool m_faceIdHasBeenSet = false; }; } // namespace Model } // namespace Rekognition } // namespace Aws