116 lines
3.1 KiB
C
116 lines
3.1 KiB
C
|
|
/**
|
|||
|
|
* 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/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
template<typename RESULT_TYPE>
|
|||
|
|
class AmazonWebServiceResult;
|
|||
|
|
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Json
|
|||
|
|
{
|
|||
|
|
class JsonValue;
|
|||
|
|
} // namespace Json
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace Lambda
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
class AWS_LAMBDA_API GetPolicyResult
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
GetPolicyResult();
|
|||
|
|
GetPolicyResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
GetPolicyResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The resource-based policy.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetPolicy() const{ return m_policy; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The resource-based policy.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetPolicy(const Aws::String& value) { m_policy = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The resource-based policy.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetPolicy(Aws::String&& value) { m_policy = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The resource-based policy.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetPolicy(const char* value) { m_policy.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The resource-based policy.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetPolicyResult& WithPolicy(const Aws::String& value) { SetPolicy(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The resource-based policy.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetPolicyResult& WithPolicy(Aws::String&& value) { SetPolicy(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The resource-based policy.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetPolicyResult& WithPolicy(const char* value) { SetPolicy(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A unique identifier for the current revision of the policy.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetRevisionId() const{ return m_revisionId; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A unique identifier for the current revision of the policy.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetRevisionId(const Aws::String& value) { m_revisionId = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A unique identifier for the current revision of the policy.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetRevisionId(Aws::String&& value) { m_revisionId = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A unique identifier for the current revision of the policy.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetRevisionId(const char* value) { m_revisionId.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A unique identifier for the current revision of the policy.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetPolicyResult& WithRevisionId(const Aws::String& value) { SetRevisionId(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A unique identifier for the current revision of the policy.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetPolicyResult& WithRevisionId(Aws::String&& value) { SetRevisionId(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A unique identifier for the current revision of the policy.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetPolicyResult& WithRevisionId(const char* value) { SetRevisionId(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_policy;
|
|||
|
|
|
|||
|
|
Aws::String m_revisionId;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace Lambda
|
|||
|
|
} // namespace Aws
|