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,91 @@
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/ec2/EC2_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Xml
{
class XmlNode;
} // namespace Xml
} // namespace Utils
namespace EC2
{
namespace Model
{
/**
* <p>The IAM SAML identity provider used for federated
* authentication.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/FederatedAuthenticationRequest">AWS
* API Reference</a></p>
*/
class AWS_EC2_API FederatedAuthenticationRequest
{
public:
FederatedAuthenticationRequest();
FederatedAuthenticationRequest(const Aws::Utils::Xml::XmlNode& xmlNode);
FederatedAuthenticationRequest& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
void OutputToStream(Aws::OStream& oStream, const char* location) const;
/**
* <p>The Amazon Resource Name (ARN) of the IAM SAML identity provider.</p>
*/
inline const Aws::String& GetSAMLProviderArn() const{ return m_sAMLProviderArn; }
/**
* <p>The Amazon Resource Name (ARN) of the IAM SAML identity provider.</p>
*/
inline bool SAMLProviderArnHasBeenSet() const { return m_sAMLProviderArnHasBeenSet; }
/**
* <p>The Amazon Resource Name (ARN) of the IAM SAML identity provider.</p>
*/
inline void SetSAMLProviderArn(const Aws::String& value) { m_sAMLProviderArnHasBeenSet = true; m_sAMLProviderArn = value; }
/**
* <p>The Amazon Resource Name (ARN) of the IAM SAML identity provider.</p>
*/
inline void SetSAMLProviderArn(Aws::String&& value) { m_sAMLProviderArnHasBeenSet = true; m_sAMLProviderArn = std::move(value); }
/**
* <p>The Amazon Resource Name (ARN) of the IAM SAML identity provider.</p>
*/
inline void SetSAMLProviderArn(const char* value) { m_sAMLProviderArnHasBeenSet = true; m_sAMLProviderArn.assign(value); }
/**
* <p>The Amazon Resource Name (ARN) of the IAM SAML identity provider.</p>
*/
inline FederatedAuthenticationRequest& WithSAMLProviderArn(const Aws::String& value) { SetSAMLProviderArn(value); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the IAM SAML identity provider.</p>
*/
inline FederatedAuthenticationRequest& WithSAMLProviderArn(Aws::String&& value) { SetSAMLProviderArn(std::move(value)); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the IAM SAML identity provider.</p>
*/
inline FederatedAuthenticationRequest& WithSAMLProviderArn(const char* value) { SetSAMLProviderArn(value); return *this;}
private:
Aws::String m_sAMLProviderArn;
bool m_sAMLProviderArnHasBeenSet;
};
} // namespace Model
} // namespace EC2
} // namespace Aws