feat(hos_client_create, hos_client_destory): 多次调用destory不会导致重复释放

This commit is contained in:
彭宣正
2020-12-14 17:24:58 +08:00
parent 505d529c32
commit 10b370e486
55976 changed files with 8544395 additions and 2 deletions

View File

@@ -0,0 +1,95 @@
/**
* 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 eye glasses, 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/Eyeglasses">AWS
* API Reference</a></p>
*/
class AWS_REKOGNITION_API Eyeglasses
{
public:
Eyeglasses();
Eyeglasses(Aws::Utils::Json::JsonView jsonValue);
Eyeglasses& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>Boolean value that indicates whether the face is wearing eye glasses or
* not.</p>
*/
inline bool GetValue() const{ return m_value; }
/**
* <p>Boolean value that indicates whether the face is wearing eye glasses or
* not.</p>
*/
inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; }
/**
* <p>Boolean value that indicates whether the face is wearing eye glasses or
* not.</p>
*/
inline void SetValue(bool value) { m_valueHasBeenSet = true; m_value = value; }
/**
* <p>Boolean value that indicates whether the face is wearing eye glasses or
* not.</p>
*/
inline Eyeglasses& 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 Eyeglasses& 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