This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files

96 lines
2.4 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/rekognition/Rekognition_EXPORTS.h>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace Rekognition
{
namespace Model
{
/**
* <p>Indicates whether or not the face is wearing sunglasses, and the confidence
* level in the determination.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/rekognition-2016-06-27/Sunglasses">AWS
* API Reference</a></p>
*/
class AWS_REKOGNITION_API Sunglasses
{
public:
Sunglasses();
Sunglasses(Aws::Utils::Json::JsonView jsonValue);
Sunglasses& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>Boolean value that indicates whether the face is wearing sunglasses or
* not.</p>
*/
inline bool GetValue() const{ return m_value; }
/**
* <p>Boolean value that indicates whether the face is wearing sunglasses or
* not.</p>
*/
inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; }
/**
* <p>Boolean value that indicates whether the face is wearing sunglasses or
* not.</p>
*/
inline void SetValue(bool value) { m_valueHasBeenSet = true; m_value = value; }
/**
* <p>Boolean value that indicates whether the face is wearing sunglasses or
* not.</p>
*/
inline Sunglasses& WithValue(bool value) { SetValue(value); return *this;}
/**
* <p>Level of confidence in the determination.</p>
*/
inline double GetConfidence() const{ return m_confidence; }
/**
* <p>Level of confidence in the determination.</p>
*/
inline bool ConfidenceHasBeenSet() const { return m_confidenceHasBeenSet; }
/**
* <p>Level of confidence in the determination.</p>
*/
inline void SetConfidence(double value) { m_confidenceHasBeenSet = true; m_confidence = value; }
/**
* <p>Level of confidence in the determination.</p>
*/
inline Sunglasses& WithConfidence(double value) { SetConfidence(value); return *this;}
private:
bool m_value;
bool m_valueHasBeenSet;
double m_confidence;
bool m_confidenceHasBeenSet;
};
} // namespace Model
} // namespace Rekognition
} // namespace Aws