/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about a face detected in a video analysis request and the time
* the face was detected in the video. See Also:
AWS
* API Reference
Time, in milliseconds from the start of the video, that the face was
* detected. Note that Timestamp
is not guaranteed to be accurate to
* the individual frame where the face first appears.
Time, in milliseconds from the start of the video, that the face was
* detected. Note that Timestamp
is not guaranteed to be accurate to
* the individual frame where the face first appears.
Time, in milliseconds from the start of the video, that the face was
* detected. Note that Timestamp
is not guaranteed to be accurate to
* the individual frame where the face first appears.
Time, in milliseconds from the start of the video, that the face was
* detected. Note that Timestamp
is not guaranteed to be accurate to
* the individual frame where the face first appears.
The face properties for the detected face.
*/ inline const FaceDetail& GetFace() const{ return m_face; } /** *The face properties for the detected face.
*/ inline bool FaceHasBeenSet() const { return m_faceHasBeenSet; } /** *The face properties for the detected face.
*/ inline void SetFace(const FaceDetail& value) { m_faceHasBeenSet = true; m_face = value; } /** *The face properties for the detected face.
*/ inline void SetFace(FaceDetail&& value) { m_faceHasBeenSet = true; m_face = std::move(value); } /** *The face properties for the detected face.
*/ inline FaceDetection& WithFace(const FaceDetail& value) { SetFace(value); return *this;} /** *The face properties for the detected face.
*/ inline FaceDetection& WithFace(FaceDetail&& value) { SetFace(std::move(value)); return *this;} private: long long m_timestamp; bool m_timestampHasBeenSet = false; FaceDetail m_face; bool m_faceHasBeenSet = false; }; } // namespace Model } // namespace Rekognition } // namespace Aws