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,111 @@
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/route53/Route53_EXPORTS.h>
#include <aws/route53/Route53Request.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Route53
{
namespace Model
{
/**
* <p>A request to get information about a specified health check. </p><p><h3>See
* Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetHealthCheckRequest">AWS
* API Reference</a></p>
*/
class AWS_ROUTE53_API GetHealthCheckRequest : public Route53Request
{
public:
GetHealthCheckRequest();
// Service request name is the Operation name which will send this request out,
// each operation should has unique request name, so that we can get operation's name from this request.
// Note: this is not true for response, multiple operations may have the same response name,
// so we can not get operation's name from response.
inline virtual const char* GetServiceRequestName() const override { return "GetHealthCheck"; }
Aws::String SerializePayload() const override;
/**
* <p>The identifier that Amazon Route 53 assigned to the health check when you
* created it. When you add or update a resource record set, you use this value to
* specify which health check to use. The value can be up to 64 characters
* long.</p>
*/
inline const Aws::String& GetHealthCheckId() const{ return m_healthCheckId; }
/**
* <p>The identifier that Amazon Route 53 assigned to the health check when you
* created it. When you add or update a resource record set, you use this value to
* specify which health check to use. The value can be up to 64 characters
* long.</p>
*/
inline bool HealthCheckIdHasBeenSet() const { return m_healthCheckIdHasBeenSet; }
/**
* <p>The identifier that Amazon Route 53 assigned to the health check when you
* created it. When you add or update a resource record set, you use this value to
* specify which health check to use. The value can be up to 64 characters
* long.</p>
*/
inline void SetHealthCheckId(const Aws::String& value) { m_healthCheckIdHasBeenSet = true; m_healthCheckId = value; }
/**
* <p>The identifier that Amazon Route 53 assigned to the health check when you
* created it. When you add or update a resource record set, you use this value to
* specify which health check to use. The value can be up to 64 characters
* long.</p>
*/
inline void SetHealthCheckId(Aws::String&& value) { m_healthCheckIdHasBeenSet = true; m_healthCheckId = std::move(value); }
/**
* <p>The identifier that Amazon Route 53 assigned to the health check when you
* created it. When you add or update a resource record set, you use this value to
* specify which health check to use. The value can be up to 64 characters
* long.</p>
*/
inline void SetHealthCheckId(const char* value) { m_healthCheckIdHasBeenSet = true; m_healthCheckId.assign(value); }
/**
* <p>The identifier that Amazon Route 53 assigned to the health check when you
* created it. When you add or update a resource record set, you use this value to
* specify which health check to use. The value can be up to 64 characters
* long.</p>
*/
inline GetHealthCheckRequest& WithHealthCheckId(const Aws::String& value) { SetHealthCheckId(value); return *this;}
/**
* <p>The identifier that Amazon Route 53 assigned to the health check when you
* created it. When you add or update a resource record set, you use this value to
* specify which health check to use. The value can be up to 64 characters
* long.</p>
*/
inline GetHealthCheckRequest& WithHealthCheckId(Aws::String&& value) { SetHealthCheckId(std::move(value)); return *this;}
/**
* <p>The identifier that Amazon Route 53 assigned to the health check when you
* created it. When you add or update a resource record set, you use this value to
* specify which health check to use. The value can be up to 64 characters
* long.</p>
*/
inline GetHealthCheckRequest& WithHealthCheckId(const char* value) { SetHealthCheckId(value); return *this;}
private:
Aws::String m_healthCheckId;
bool m_healthCheckIdHasBeenSet;
};
} // namespace Model
} // namespace Route53
} // namespace Aws