This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-wafv2/include/aws/wafv2/model/CreateIPSetResult.h

83 lines
3.0 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/wafv2/WAFV2_EXPORTS.h>
#include <aws/wafv2/model/IPSetSummary.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace WAFV2
{
namespace Model
{
class AWS_WAFV2_API CreateIPSetResult
{
public:
CreateIPSetResult();
CreateIPSetResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
CreateIPSetResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>High-level information about an <a>IPSet</a>, returned by operations like
* create and list. This provides information like the ID, that you can use to
* retrieve and manage an <code>IPSet</code>, and the ARN, that you provide to the
* <a>IPSetReferenceStatement</a> to use the address set in a <a>Rule</a>.</p>
*/
inline const IPSetSummary& GetSummary() const{ return m_summary; }
/**
* <p>High-level information about an <a>IPSet</a>, returned by operations like
* create and list. This provides information like the ID, that you can use to
* retrieve and manage an <code>IPSet</code>, and the ARN, that you provide to the
* <a>IPSetReferenceStatement</a> to use the address set in a <a>Rule</a>.</p>
*/
inline void SetSummary(const IPSetSummary& value) { m_summary = value; }
/**
* <p>High-level information about an <a>IPSet</a>, returned by operations like
* create and list. This provides information like the ID, that you can use to
* retrieve and manage an <code>IPSet</code>, and the ARN, that you provide to the
* <a>IPSetReferenceStatement</a> to use the address set in a <a>Rule</a>.</p>
*/
inline void SetSummary(IPSetSummary&& value) { m_summary = std::move(value); }
/**
* <p>High-level information about an <a>IPSet</a>, returned by operations like
* create and list. This provides information like the ID, that you can use to
* retrieve and manage an <code>IPSet</code>, and the ARN, that you provide to the
* <a>IPSetReferenceStatement</a> to use the address set in a <a>Rule</a>.</p>
*/
inline CreateIPSetResult& WithSummary(const IPSetSummary& value) { SetSummary(value); return *this;}
/**
* <p>High-level information about an <a>IPSet</a>, returned by operations like
* create and list. This provides information like the ID, that you can use to
* retrieve and manage an <code>IPSet</code>, and the ARN, that you provide to the
* <a>IPSetReferenceStatement</a> to use the address set in a <a>Rule</a>.</p>
*/
inline CreateIPSetResult& WithSummary(IPSetSummary&& value) { SetSummary(std::move(value)); return *this;}
private:
IPSetSummary m_summary;
};
} // namespace Model
} // namespace WAFV2
} // namespace Aws