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,101 @@
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/sso-oidc/SSOOIDC_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace SSOOIDC
{
namespace Model
{
/**
* <p>You do not have sufficient access to perform this action.</p><p><h3>See
* Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/sso-oidc-2019-06-10/AccessDeniedException">AWS
* API Reference</a></p>
*/
class AWS_SSOOIDC_API AccessDeniedException
{
public:
AccessDeniedException();
AccessDeniedException(Aws::Utils::Json::JsonView jsonValue);
AccessDeniedException& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
inline const Aws::String& GetError() const{ return m_error; }
inline bool ErrorHasBeenSet() const { return m_errorHasBeenSet; }
inline void SetError(const Aws::String& value) { m_errorHasBeenSet = true; m_error = value; }
inline void SetError(Aws::String&& value) { m_errorHasBeenSet = true; m_error = std::move(value); }
inline void SetError(const char* value) { m_errorHasBeenSet = true; m_error.assign(value); }
inline AccessDeniedException& WithError(const Aws::String& value) { SetError(value); return *this;}
inline AccessDeniedException& WithError(Aws::String&& value) { SetError(std::move(value)); return *this;}
inline AccessDeniedException& WithError(const char* value) { SetError(value); return *this;}
inline const Aws::String& GetError_description() const{ return m_error_description; }
inline bool Error_descriptionHasBeenSet() const { return m_error_descriptionHasBeenSet; }
inline void SetError_description(const Aws::String& value) { m_error_descriptionHasBeenSet = true; m_error_description = value; }
inline void SetError_description(Aws::String&& value) { m_error_descriptionHasBeenSet = true; m_error_description = std::move(value); }
inline void SetError_description(const char* value) { m_error_descriptionHasBeenSet = true; m_error_description.assign(value); }
inline AccessDeniedException& WithError_description(const Aws::String& value) { SetError_description(value); return *this;}
inline AccessDeniedException& WithError_description(Aws::String&& value) { SetError_description(std::move(value)); return *this;}
inline AccessDeniedException& WithError_description(const char* value) { SetError_description(value); return *this;}
private:
Aws::String m_error;
bool m_errorHasBeenSet;
Aws::String m_error_description;
bool m_error_descriptionHasBeenSet;
};
} // namespace Model
} // namespace SSOOIDC
} // namespace Aws