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-waf/include/aws/waf/model/GetByteMatchSetResult.h

113 lines
5.0 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/waf/WAF_EXPORTS.h>
#include <aws/waf/model/ByteMatchSet.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace WAF
{
namespace Model
{
class AWS_WAF_API GetByteMatchSetResult
{
public:
GetByteMatchSetResult();
GetByteMatchSetResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
GetByteMatchSetResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>Information about the <a>ByteMatchSet</a> that you specified in the
* <code>GetByteMatchSet</code> request. For more information, see the following
* topics:</p> <ul> <li> <p> <a>ByteMatchSet</a>: Contains
* <code>ByteMatchSetId</code>, <code>ByteMatchTuples</code>, and <code>Name</code>
* </p> </li> <li> <p> <code>ByteMatchTuples</code>: Contains an array of
* <a>ByteMatchTuple</a> objects. Each <code>ByteMatchTuple</code> object contains
* <a>FieldToMatch</a>, <code>PositionalConstraint</code>,
* <code>TargetString</code>, and <code>TextTransformation</code> </p> </li> <li>
* <p> <a>FieldToMatch</a>: Contains <code>Data</code> and <code>Type</code> </p>
* </li> </ul>
*/
inline const ByteMatchSet& GetByteMatchSet() const{ return m_byteMatchSet; }
/**
* <p>Information about the <a>ByteMatchSet</a> that you specified in the
* <code>GetByteMatchSet</code> request. For more information, see the following
* topics:</p> <ul> <li> <p> <a>ByteMatchSet</a>: Contains
* <code>ByteMatchSetId</code>, <code>ByteMatchTuples</code>, and <code>Name</code>
* </p> </li> <li> <p> <code>ByteMatchTuples</code>: Contains an array of
* <a>ByteMatchTuple</a> objects. Each <code>ByteMatchTuple</code> object contains
* <a>FieldToMatch</a>, <code>PositionalConstraint</code>,
* <code>TargetString</code>, and <code>TextTransformation</code> </p> </li> <li>
* <p> <a>FieldToMatch</a>: Contains <code>Data</code> and <code>Type</code> </p>
* </li> </ul>
*/
inline void SetByteMatchSet(const ByteMatchSet& value) { m_byteMatchSet = value; }
/**
* <p>Information about the <a>ByteMatchSet</a> that you specified in the
* <code>GetByteMatchSet</code> request. For more information, see the following
* topics:</p> <ul> <li> <p> <a>ByteMatchSet</a>: Contains
* <code>ByteMatchSetId</code>, <code>ByteMatchTuples</code>, and <code>Name</code>
* </p> </li> <li> <p> <code>ByteMatchTuples</code>: Contains an array of
* <a>ByteMatchTuple</a> objects. Each <code>ByteMatchTuple</code> object contains
* <a>FieldToMatch</a>, <code>PositionalConstraint</code>,
* <code>TargetString</code>, and <code>TextTransformation</code> </p> </li> <li>
* <p> <a>FieldToMatch</a>: Contains <code>Data</code> and <code>Type</code> </p>
* </li> </ul>
*/
inline void SetByteMatchSet(ByteMatchSet&& value) { m_byteMatchSet = std::move(value); }
/**
* <p>Information about the <a>ByteMatchSet</a> that you specified in the
* <code>GetByteMatchSet</code> request. For more information, see the following
* topics:</p> <ul> <li> <p> <a>ByteMatchSet</a>: Contains
* <code>ByteMatchSetId</code>, <code>ByteMatchTuples</code>, and <code>Name</code>
* </p> </li> <li> <p> <code>ByteMatchTuples</code>: Contains an array of
* <a>ByteMatchTuple</a> objects. Each <code>ByteMatchTuple</code> object contains
* <a>FieldToMatch</a>, <code>PositionalConstraint</code>,
* <code>TargetString</code>, and <code>TextTransformation</code> </p> </li> <li>
* <p> <a>FieldToMatch</a>: Contains <code>Data</code> and <code>Type</code> </p>
* </li> </ul>
*/
inline GetByteMatchSetResult& WithByteMatchSet(const ByteMatchSet& value) { SetByteMatchSet(value); return *this;}
/**
* <p>Information about the <a>ByteMatchSet</a> that you specified in the
* <code>GetByteMatchSet</code> request. For more information, see the following
* topics:</p> <ul> <li> <p> <a>ByteMatchSet</a>: Contains
* <code>ByteMatchSetId</code>, <code>ByteMatchTuples</code>, and <code>Name</code>
* </p> </li> <li> <p> <code>ByteMatchTuples</code>: Contains an array of
* <a>ByteMatchTuple</a> objects. Each <code>ByteMatchTuple</code> object contains
* <a>FieldToMatch</a>, <code>PositionalConstraint</code>,
* <code>TargetString</code>, and <code>TextTransformation</code> </p> </li> <li>
* <p> <a>FieldToMatch</a>: Contains <code>Data</code> and <code>Type</code> </p>
* </li> </ul>
*/
inline GetByteMatchSetResult& WithByteMatchSet(ByteMatchSet&& value) { SetByteMatchSet(std::move(value)); return *this;}
private:
ByteMatchSet m_byteMatchSet;
};
} // namespace Model
} // namespace WAF
} // namespace Aws