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,318 @@
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/lambda/Lambda_EXPORTS.h>
#include <aws/lambda/LambdaRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/lambda/model/AliasRoutingConfiguration.h>
#include <utility>
namespace Aws
{
namespace Lambda
{
namespace Model
{
/**
*/
class AWS_LAMBDA_API CreateAliasRequest : public LambdaRequest
{
public:
CreateAliasRequest();
// 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 "CreateAlias"; }
Aws::String SerializePayload() const override;
/**
* <p>The name of the Lambda function.</p> <p class="title"> <b>Name formats</b>
* </p> <ul> <li> <p> <b>Function name</b> - <code>MyFunction</code>.</p> </li>
* <li> <p> <b>Function ARN</b> -
* <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p>
* </li> <li> <p> <b>Partial ARN</b> -
* <code>123456789012:function:MyFunction</code>.</p> </li> </ul> <p>The length
* constraint applies only to the full ARN. If you specify only the function name,
* it is limited to 64 characters in length.</p>
*/
inline const Aws::String& GetFunctionName() const{ return m_functionName; }
/**
* <p>The name of the Lambda function.</p> <p class="title"> <b>Name formats</b>
* </p> <ul> <li> <p> <b>Function name</b> - <code>MyFunction</code>.</p> </li>
* <li> <p> <b>Function ARN</b> -
* <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p>
* </li> <li> <p> <b>Partial ARN</b> -
* <code>123456789012:function:MyFunction</code>.</p> </li> </ul> <p>The length
* constraint applies only to the full ARN. If you specify only the function name,
* it is limited to 64 characters in length.</p>
*/
inline bool FunctionNameHasBeenSet() const { return m_functionNameHasBeenSet; }
/**
* <p>The name of the Lambda function.</p> <p class="title"> <b>Name formats</b>
* </p> <ul> <li> <p> <b>Function name</b> - <code>MyFunction</code>.</p> </li>
* <li> <p> <b>Function ARN</b> -
* <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p>
* </li> <li> <p> <b>Partial ARN</b> -
* <code>123456789012:function:MyFunction</code>.</p> </li> </ul> <p>The length
* constraint applies only to the full ARN. If you specify only the function name,
* it is limited to 64 characters in length.</p>
*/
inline void SetFunctionName(const Aws::String& value) { m_functionNameHasBeenSet = true; m_functionName = value; }
/**
* <p>The name of the Lambda function.</p> <p class="title"> <b>Name formats</b>
* </p> <ul> <li> <p> <b>Function name</b> - <code>MyFunction</code>.</p> </li>
* <li> <p> <b>Function ARN</b> -
* <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p>
* </li> <li> <p> <b>Partial ARN</b> -
* <code>123456789012:function:MyFunction</code>.</p> </li> </ul> <p>The length
* constraint applies only to the full ARN. If you specify only the function name,
* it is limited to 64 characters in length.</p>
*/
inline void SetFunctionName(Aws::String&& value) { m_functionNameHasBeenSet = true; m_functionName = std::move(value); }
/**
* <p>The name of the Lambda function.</p> <p class="title"> <b>Name formats</b>
* </p> <ul> <li> <p> <b>Function name</b> - <code>MyFunction</code>.</p> </li>
* <li> <p> <b>Function ARN</b> -
* <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p>
* </li> <li> <p> <b>Partial ARN</b> -
* <code>123456789012:function:MyFunction</code>.</p> </li> </ul> <p>The length
* constraint applies only to the full ARN. If you specify only the function name,
* it is limited to 64 characters in length.</p>
*/
inline void SetFunctionName(const char* value) { m_functionNameHasBeenSet = true; m_functionName.assign(value); }
/**
* <p>The name of the Lambda function.</p> <p class="title"> <b>Name formats</b>
* </p> <ul> <li> <p> <b>Function name</b> - <code>MyFunction</code>.</p> </li>
* <li> <p> <b>Function ARN</b> -
* <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p>
* </li> <li> <p> <b>Partial ARN</b> -
* <code>123456789012:function:MyFunction</code>.</p> </li> </ul> <p>The length
* constraint applies only to the full ARN. If you specify only the function name,
* it is limited to 64 characters in length.</p>
*/
inline CreateAliasRequest& WithFunctionName(const Aws::String& value) { SetFunctionName(value); return *this;}
/**
* <p>The name of the Lambda function.</p> <p class="title"> <b>Name formats</b>
* </p> <ul> <li> <p> <b>Function name</b> - <code>MyFunction</code>.</p> </li>
* <li> <p> <b>Function ARN</b> -
* <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p>
* </li> <li> <p> <b>Partial ARN</b> -
* <code>123456789012:function:MyFunction</code>.</p> </li> </ul> <p>The length
* constraint applies only to the full ARN. If you specify only the function name,
* it is limited to 64 characters in length.</p>
*/
inline CreateAliasRequest& WithFunctionName(Aws::String&& value) { SetFunctionName(std::move(value)); return *this;}
/**
* <p>The name of the Lambda function.</p> <p class="title"> <b>Name formats</b>
* </p> <ul> <li> <p> <b>Function name</b> - <code>MyFunction</code>.</p> </li>
* <li> <p> <b>Function ARN</b> -
* <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p>
* </li> <li> <p> <b>Partial ARN</b> -
* <code>123456789012:function:MyFunction</code>.</p> </li> </ul> <p>The length
* constraint applies only to the full ARN. If you specify only the function name,
* it is limited to 64 characters in length.</p>
*/
inline CreateAliasRequest& WithFunctionName(const char* value) { SetFunctionName(value); return *this;}
/**
* <p>The name of the alias.</p>
*/
inline const Aws::String& GetName() const{ return m_name; }
/**
* <p>The name of the alias.</p>
*/
inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
/**
* <p>The name of the alias.</p>
*/
inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
/**
* <p>The name of the alias.</p>
*/
inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
/**
* <p>The name of the alias.</p>
*/
inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
/**
* <p>The name of the alias.</p>
*/
inline CreateAliasRequest& WithName(const Aws::String& value) { SetName(value); return *this;}
/**
* <p>The name of the alias.</p>
*/
inline CreateAliasRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
/**
* <p>The name of the alias.</p>
*/
inline CreateAliasRequest& WithName(const char* value) { SetName(value); return *this;}
/**
* <p>The function version that the alias invokes.</p>
*/
inline const Aws::String& GetFunctionVersion() const{ return m_functionVersion; }
/**
* <p>The function version that the alias invokes.</p>
*/
inline bool FunctionVersionHasBeenSet() const { return m_functionVersionHasBeenSet; }
/**
* <p>The function version that the alias invokes.</p>
*/
inline void SetFunctionVersion(const Aws::String& value) { m_functionVersionHasBeenSet = true; m_functionVersion = value; }
/**
* <p>The function version that the alias invokes.</p>
*/
inline void SetFunctionVersion(Aws::String&& value) { m_functionVersionHasBeenSet = true; m_functionVersion = std::move(value); }
/**
* <p>The function version that the alias invokes.</p>
*/
inline void SetFunctionVersion(const char* value) { m_functionVersionHasBeenSet = true; m_functionVersion.assign(value); }
/**
* <p>The function version that the alias invokes.</p>
*/
inline CreateAliasRequest& WithFunctionVersion(const Aws::String& value) { SetFunctionVersion(value); return *this;}
/**
* <p>The function version that the alias invokes.</p>
*/
inline CreateAliasRequest& WithFunctionVersion(Aws::String&& value) { SetFunctionVersion(std::move(value)); return *this;}
/**
* <p>The function version that the alias invokes.</p>
*/
inline CreateAliasRequest& WithFunctionVersion(const char* value) { SetFunctionVersion(value); return *this;}
/**
* <p>A description of the alias.</p>
*/
inline const Aws::String& GetDescription() const{ return m_description; }
/**
* <p>A description of the alias.</p>
*/
inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
/**
* <p>A description of the alias.</p>
*/
inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
/**
* <p>A description of the alias.</p>
*/
inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
/**
* <p>A description of the alias.</p>
*/
inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
/**
* <p>A description of the alias.</p>
*/
inline CreateAliasRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
/**
* <p>A description of the alias.</p>
*/
inline CreateAliasRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
/**
* <p>A description of the alias.</p>
*/
inline CreateAliasRequest& WithDescription(const char* value) { SetDescription(value); return *this;}
/**
* <p>The <a
* href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html#configuring-alias-routing">routing
* configuration</a> of the alias.</p>
*/
inline const AliasRoutingConfiguration& GetRoutingConfig() const{ return m_routingConfig; }
/**
* <p>The <a
* href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html#configuring-alias-routing">routing
* configuration</a> of the alias.</p>
*/
inline bool RoutingConfigHasBeenSet() const { return m_routingConfigHasBeenSet; }
/**
* <p>The <a
* href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html#configuring-alias-routing">routing
* configuration</a> of the alias.</p>
*/
inline void SetRoutingConfig(const AliasRoutingConfiguration& value) { m_routingConfigHasBeenSet = true; m_routingConfig = value; }
/**
* <p>The <a
* href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html#configuring-alias-routing">routing
* configuration</a> of the alias.</p>
*/
inline void SetRoutingConfig(AliasRoutingConfiguration&& value) { m_routingConfigHasBeenSet = true; m_routingConfig = std::move(value); }
/**
* <p>The <a
* href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html#configuring-alias-routing">routing
* configuration</a> of the alias.</p>
*/
inline CreateAliasRequest& WithRoutingConfig(const AliasRoutingConfiguration& value) { SetRoutingConfig(value); return *this;}
/**
* <p>The <a
* href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html#configuring-alias-routing">routing
* configuration</a> of the alias.</p>
*/
inline CreateAliasRequest& WithRoutingConfig(AliasRoutingConfiguration&& value) { SetRoutingConfig(std::move(value)); return *this;}
private:
Aws::String m_functionName;
bool m_functionNameHasBeenSet;
Aws::String m_name;
bool m_nameHasBeenSet;
Aws::String m_functionVersion;
bool m_functionVersionHasBeenSet;
Aws::String m_description;
bool m_descriptionHasBeenSet;
AliasRoutingConfiguration m_routingConfig;
bool m_routingConfigHasBeenSet;
};
} // namespace Model
} // namespace Lambda
} // namespace Aws