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/GetLoggingConfigurationResult.h

68 lines
1.9 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/LoggingConfiguration.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 GetLoggingConfigurationResult
{
public:
GetLoggingConfigurationResult();
GetLoggingConfigurationResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
GetLoggingConfigurationResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The <a>LoggingConfiguration</a> for the specified web ACL.</p>
*/
inline const LoggingConfiguration& GetLoggingConfiguration() const{ return m_loggingConfiguration; }
/**
* <p>The <a>LoggingConfiguration</a> for the specified web ACL.</p>
*/
inline void SetLoggingConfiguration(const LoggingConfiguration& value) { m_loggingConfiguration = value; }
/**
* <p>The <a>LoggingConfiguration</a> for the specified web ACL.</p>
*/
inline void SetLoggingConfiguration(LoggingConfiguration&& value) { m_loggingConfiguration = std::move(value); }
/**
* <p>The <a>LoggingConfiguration</a> for the specified web ACL.</p>
*/
inline GetLoggingConfigurationResult& WithLoggingConfiguration(const LoggingConfiguration& value) { SetLoggingConfiguration(value); return *this;}
/**
* <p>The <a>LoggingConfiguration</a> for the specified web ACL.</p>
*/
inline GetLoggingConfigurationResult& WithLoggingConfiguration(LoggingConfiguration&& value) { SetLoggingConfiguration(std::move(value)); return *this;}
private:
LoggingConfiguration m_loggingConfiguration;
};
} // namespace Model
} // namespace WAF
} // namespace Aws