Class: Aws::WAFRegional::Types::GetSampledRequestsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAFRegional::Types::GetSampledRequestsResponse
- Defined in:
- gems/aws-sdk-wafregional/lib/aws-sdk-wafregional/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#population_size ⇒ Integer
The total number of requests from which
GetSampledRequests
got a sample ofMaxItems
requests. -
#sampled_requests ⇒ Array<Types::SampledHTTPRequest>
A complex type that contains detailed information about each of the requests in the sample.
-
#time_window ⇒ Types::TimeWindow
Usually,
TimeWindow
is the time range that you specified in theGetSampledRequests
request.
Instance Attribute Details
#population_size ⇒ Integer
The total number of requests from which GetSampledRequests
got a
sample of MaxItems
requests. If PopulationSize
is less than
MaxItems
, the sample includes every request that your AWS resource
received during the specified time range.
2761 2762 2763 2764 2765 2766 2767 |
# File 'gems/aws-sdk-wafregional/lib/aws-sdk-wafregional/types.rb', line 2761 class GetSampledRequestsResponse < Struct.new( :sampled_requests, :population_size, :time_window) SENSITIVE = [] include Aws::Structure end |
#sampled_requests ⇒ Array<Types::SampledHTTPRequest>
A complex type that contains detailed information about each of the requests in the sample.
2761 2762 2763 2764 2765 2766 2767 |
# File 'gems/aws-sdk-wafregional/lib/aws-sdk-wafregional/types.rb', line 2761 class GetSampledRequestsResponse < Struct.new( :sampled_requests, :population_size, :time_window) SENSITIVE = [] include Aws::Structure end |
#time_window ⇒ Types::TimeWindow
Usually, TimeWindow
is the time range that you specified in the
GetSampledRequests
request. However, if your AWS resource received
more than 5,000 requests during the time range that you specified in
the request, GetSampledRequests
returns the time range for the
first 5,000 requests. Times are in Coordinated Universal Time (UTC)
format.
2761 2762 2763 2764 2765 2766 2767 |
# File 'gems/aws-sdk-wafregional/lib/aws-sdk-wafregional/types.rb', line 2761 class GetSampledRequestsResponse < Struct.new( :sampled_requests, :population_size, :time_window) SENSITIVE = [] include Aws::Structure end |