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,137 @@
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/logs/CloudWatchLogs_EXPORTS.h>
#include <aws/logs/CloudWatchLogsRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace CloudWatchLogs
{
namespace Model
{
/**
*/
class AWS_CLOUDWATCHLOGS_API PutDestinationPolicyRequest : public CloudWatchLogsRequest
{
public:
PutDestinationPolicyRequest();
// 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 "PutDestinationPolicy"; }
Aws::String SerializePayload() const override;
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
/**
* <p>A name for an existing destination.</p>
*/
inline const Aws::String& GetDestinationName() const{ return m_destinationName; }
/**
* <p>A name for an existing destination.</p>
*/
inline bool DestinationNameHasBeenSet() const { return m_destinationNameHasBeenSet; }
/**
* <p>A name for an existing destination.</p>
*/
inline void SetDestinationName(const Aws::String& value) { m_destinationNameHasBeenSet = true; m_destinationName = value; }
/**
* <p>A name for an existing destination.</p>
*/
inline void SetDestinationName(Aws::String&& value) { m_destinationNameHasBeenSet = true; m_destinationName = std::move(value); }
/**
* <p>A name for an existing destination.</p>
*/
inline void SetDestinationName(const char* value) { m_destinationNameHasBeenSet = true; m_destinationName.assign(value); }
/**
* <p>A name for an existing destination.</p>
*/
inline PutDestinationPolicyRequest& WithDestinationName(const Aws::String& value) { SetDestinationName(value); return *this;}
/**
* <p>A name for an existing destination.</p>
*/
inline PutDestinationPolicyRequest& WithDestinationName(Aws::String&& value) { SetDestinationName(std::move(value)); return *this;}
/**
* <p>A name for an existing destination.</p>
*/
inline PutDestinationPolicyRequest& WithDestinationName(const char* value) { SetDestinationName(value); return *this;}
/**
* <p>An IAM policy document that authorizes cross-account users to deliver their
* log events to the associated destination. This can be up to 5120 bytes.</p>
*/
inline const Aws::String& GetAccessPolicy() const{ return m_accessPolicy; }
/**
* <p>An IAM policy document that authorizes cross-account users to deliver their
* log events to the associated destination. This can be up to 5120 bytes.</p>
*/
inline bool AccessPolicyHasBeenSet() const { return m_accessPolicyHasBeenSet; }
/**
* <p>An IAM policy document that authorizes cross-account users to deliver their
* log events to the associated destination. This can be up to 5120 bytes.</p>
*/
inline void SetAccessPolicy(const Aws::String& value) { m_accessPolicyHasBeenSet = true; m_accessPolicy = value; }
/**
* <p>An IAM policy document that authorizes cross-account users to deliver their
* log events to the associated destination. This can be up to 5120 bytes.</p>
*/
inline void SetAccessPolicy(Aws::String&& value) { m_accessPolicyHasBeenSet = true; m_accessPolicy = std::move(value); }
/**
* <p>An IAM policy document that authorizes cross-account users to deliver their
* log events to the associated destination. This can be up to 5120 bytes.</p>
*/
inline void SetAccessPolicy(const char* value) { m_accessPolicyHasBeenSet = true; m_accessPolicy.assign(value); }
/**
* <p>An IAM policy document that authorizes cross-account users to deliver their
* log events to the associated destination. This can be up to 5120 bytes.</p>
*/
inline PutDestinationPolicyRequest& WithAccessPolicy(const Aws::String& value) { SetAccessPolicy(value); return *this;}
/**
* <p>An IAM policy document that authorizes cross-account users to deliver their
* log events to the associated destination. This can be up to 5120 bytes.</p>
*/
inline PutDestinationPolicyRequest& WithAccessPolicy(Aws::String&& value) { SetAccessPolicy(std::move(value)); return *this;}
/**
* <p>An IAM policy document that authorizes cross-account users to deliver their
* log events to the associated destination. This can be up to 5120 bytes.</p>
*/
inline PutDestinationPolicyRequest& WithAccessPolicy(const char* value) { SetAccessPolicy(value); return *this;}
private:
Aws::String m_destinationName;
bool m_destinationNameHasBeenSet;
Aws::String m_accessPolicy;
bool m_accessPolicyHasBeenSet;
};
} // namespace Model
} // namespace CloudWatchLogs
} // namespace Aws