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

193 lines
9.1 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/core/utils/DateTime.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace WAF
{
namespace Model
{
/**
* <p>This is <b>AWS WAF Classic</b> documentation. For more information,
* see <a
* href="https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html">AWS
* WAF Classic</a> in the developer guide.</p> <p> <b>For the latest version of AWS
* WAF</b>, use the AWS WAFV2 API and see the <a
* href="https://docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html">AWS
* WAF Developer Guide</a>. With the latest version, AWS WAF has a single set of
* endpoints for regional and global use. </p> <p>In a
* <a>GetSampledRequests</a> request, the <code>StartTime</code> and
* <code>EndTime</code> objects specify the time range for which you want AWS WAF
* to return a sample of web requests.</p> <p>You must specify the times in
* Coordinated Universal Time (UTC) format. UTC format includes the special
* designator, <code>Z</code>. For example, <code>"2016-09-27T14:50Z"</code>. </p>
* <p>In a <a>GetSampledRequests</a> response, the <code>StartTime</code> and
* <code>EndTime</code> objects specify the time range for which AWS WAF actually
* returned a sample of web requests. AWS WAF gets the specified number of requests
* from among the first 5,000 requests that your AWS resource receives during the
* specified time period. If your resource receives more than 5,000 requests during
* that period, AWS WAF stops sampling after the 5,000th request. In that case,
* <code>EndTime</code> is the time that AWS WAF received the 5,000th request.
* </p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/waf-2015-08-24/TimeWindow">AWS API
* Reference</a></p>
*/
class AWS_WAF_API TimeWindow
{
public:
TimeWindow();
TimeWindow(Aws::Utils::Json::JsonView jsonValue);
TimeWindow& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The beginning of the time range from which you want
* <code>GetSampledRequests</code> to return a sample of the requests that your AWS
* resource received. You must specify the date and time in Coordinated Universal
* Time (UTC) format. UTC format includes the special designator, <code>Z</code>.
* For example, <code>"2016-09-27T14:50Z"</code>. You can specify any time range in
* the previous three hours.</p>
*/
inline const Aws::Utils::DateTime& GetStartTime() const{ return m_startTime; }
/**
* <p>The beginning of the time range from which you want
* <code>GetSampledRequests</code> to return a sample of the requests that your AWS
* resource received. You must specify the date and time in Coordinated Universal
* Time (UTC) format. UTC format includes the special designator, <code>Z</code>.
* For example, <code>"2016-09-27T14:50Z"</code>. You can specify any time range in
* the previous three hours.</p>
*/
inline bool StartTimeHasBeenSet() const { return m_startTimeHasBeenSet; }
/**
* <p>The beginning of the time range from which you want
* <code>GetSampledRequests</code> to return a sample of the requests that your AWS
* resource received. You must specify the date and time in Coordinated Universal
* Time (UTC) format. UTC format includes the special designator, <code>Z</code>.
* For example, <code>"2016-09-27T14:50Z"</code>. You can specify any time range in
* the previous three hours.</p>
*/
inline void SetStartTime(const Aws::Utils::DateTime& value) { m_startTimeHasBeenSet = true; m_startTime = value; }
/**
* <p>The beginning of the time range from which you want
* <code>GetSampledRequests</code> to return a sample of the requests that your AWS
* resource received. You must specify the date and time in Coordinated Universal
* Time (UTC) format. UTC format includes the special designator, <code>Z</code>.
* For example, <code>"2016-09-27T14:50Z"</code>. You can specify any time range in
* the previous three hours.</p>
*/
inline void SetStartTime(Aws::Utils::DateTime&& value) { m_startTimeHasBeenSet = true; m_startTime = std::move(value); }
/**
* <p>The beginning of the time range from which you want
* <code>GetSampledRequests</code> to return a sample of the requests that your AWS
* resource received. You must specify the date and time in Coordinated Universal
* Time (UTC) format. UTC format includes the special designator, <code>Z</code>.
* For example, <code>"2016-09-27T14:50Z"</code>. You can specify any time range in
* the previous three hours.</p>
*/
inline TimeWindow& WithStartTime(const Aws::Utils::DateTime& value) { SetStartTime(value); return *this;}
/**
* <p>The beginning of the time range from which you want
* <code>GetSampledRequests</code> to return a sample of the requests that your AWS
* resource received. You must specify the date and time in Coordinated Universal
* Time (UTC) format. UTC format includes the special designator, <code>Z</code>.
* For example, <code>"2016-09-27T14:50Z"</code>. You can specify any time range in
* the previous three hours.</p>
*/
inline TimeWindow& WithStartTime(Aws::Utils::DateTime&& value) { SetStartTime(std::move(value)); return *this;}
/**
* <p>The end of the time range from which you want <code>GetSampledRequests</code>
* to return a sample of the requests that your AWS resource received. You must
* specify the date and time in Coordinated Universal Time (UTC) format. UTC format
* includes the special designator, <code>Z</code>. For example,
* <code>"2016-09-27T14:50Z"</code>. You can specify any time range in the previous
* three hours.</p>
*/
inline const Aws::Utils::DateTime& GetEndTime() const{ return m_endTime; }
/**
* <p>The end of the time range from which you want <code>GetSampledRequests</code>
* to return a sample of the requests that your AWS resource received. You must
* specify the date and time in Coordinated Universal Time (UTC) format. UTC format
* includes the special designator, <code>Z</code>. For example,
* <code>"2016-09-27T14:50Z"</code>. You can specify any time range in the previous
* three hours.</p>
*/
inline bool EndTimeHasBeenSet() const { return m_endTimeHasBeenSet; }
/**
* <p>The end of the time range from which you want <code>GetSampledRequests</code>
* to return a sample of the requests that your AWS resource received. You must
* specify the date and time in Coordinated Universal Time (UTC) format. UTC format
* includes the special designator, <code>Z</code>. For example,
* <code>"2016-09-27T14:50Z"</code>. You can specify any time range in the previous
* three hours.</p>
*/
inline void SetEndTime(const Aws::Utils::DateTime& value) { m_endTimeHasBeenSet = true; m_endTime = value; }
/**
* <p>The end of the time range from which you want <code>GetSampledRequests</code>
* to return a sample of the requests that your AWS resource received. You must
* specify the date and time in Coordinated Universal Time (UTC) format. UTC format
* includes the special designator, <code>Z</code>. For example,
* <code>"2016-09-27T14:50Z"</code>. You can specify any time range in the previous
* three hours.</p>
*/
inline void SetEndTime(Aws::Utils::DateTime&& value) { m_endTimeHasBeenSet = true; m_endTime = std::move(value); }
/**
* <p>The end of the time range from which you want <code>GetSampledRequests</code>
* to return a sample of the requests that your AWS resource received. You must
* specify the date and time in Coordinated Universal Time (UTC) format. UTC format
* includes the special designator, <code>Z</code>. For example,
* <code>"2016-09-27T14:50Z"</code>. You can specify any time range in the previous
* three hours.</p>
*/
inline TimeWindow& WithEndTime(const Aws::Utils::DateTime& value) { SetEndTime(value); return *this;}
/**
* <p>The end of the time range from which you want <code>GetSampledRequests</code>
* to return a sample of the requests that your AWS resource received. You must
* specify the date and time in Coordinated Universal Time (UTC) format. UTC format
* includes the special designator, <code>Z</code>. For example,
* <code>"2016-09-27T14:50Z"</code>. You can specify any time range in the previous
* three hours.</p>
*/
inline TimeWindow& WithEndTime(Aws::Utils::DateTime&& value) { SetEndTime(std::move(value)); return *this;}
private:
Aws::Utils::DateTime m_startTime;
bool m_startTimeHasBeenSet;
Aws::Utils::DateTime m_endTime;
bool m_endTimeHasBeenSet;
};
} // namespace Model
} // namespace WAF
} // namespace Aws