68 lines
1.6 KiB
C
68 lines
1.6 KiB
C
|
|
/**
|
|||
|
|
* 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/model/ResourcePolicy.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
template<typename RESULT_TYPE>
|
|||
|
|
class AmazonWebServiceResult;
|
|||
|
|
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Json
|
|||
|
|
{
|
|||
|
|
class JsonValue;
|
|||
|
|
} // namespace Json
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace CloudWatchLogs
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
class AWS_CLOUDWATCHLOGS_API PutResourcePolicyResult
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
PutResourcePolicyResult();
|
|||
|
|
PutResourcePolicyResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
PutResourcePolicyResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The new policy.</p>
|
|||
|
|
*/
|
|||
|
|
inline const ResourcePolicy& GetResourcePolicy() const{ return m_resourcePolicy; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The new policy.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetResourcePolicy(const ResourcePolicy& value) { m_resourcePolicy = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The new policy.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetResourcePolicy(ResourcePolicy&& value) { m_resourcePolicy = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The new policy.</p>
|
|||
|
|
*/
|
|||
|
|
inline PutResourcePolicyResult& WithResourcePolicy(const ResourcePolicy& value) { SetResourcePolicy(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The new policy.</p>
|
|||
|
|
*/
|
|||
|
|
inline PutResourcePolicyResult& WithResourcePolicy(ResourcePolicy&& value) { SetResourcePolicy(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
ResourcePolicy m_resourcePolicy;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace CloudWatchLogs
|
|||
|
|
} // namespace Aws
|