/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Provides face metadata for the faces that are disassociated from a specific
* UserID.See Also:
AWS
* API Reference
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