libZSservicesZSamazonka-cloudwatch-logsZSamazonka-cloudwatch-logs
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.CloudWatchLogs.Types.QueryStatistics

Description

 
Synopsis

Documentation

data QueryStatistics Source #

Contains the number of log events scanned by the query, the number of log events that matched the query criteria, and the total number of bytes in the log events that were scanned.

See: newQueryStatistics smart constructor.

Constructors

QueryStatistics' 

Fields

Instances

Instances details
Eq QueryStatistics Source # 
Instance details

Defined in Amazonka.CloudWatchLogs.Types.QueryStatistics

Read QueryStatistics Source # 
Instance details

Defined in Amazonka.CloudWatchLogs.Types.QueryStatistics

Show QueryStatistics Source # 
Instance details

Defined in Amazonka.CloudWatchLogs.Types.QueryStatistics

Generic QueryStatistics Source # 
Instance details

Defined in Amazonka.CloudWatchLogs.Types.QueryStatistics

Associated Types

type Rep QueryStatistics :: Type -> Type #

NFData QueryStatistics Source # 
Instance details

Defined in Amazonka.CloudWatchLogs.Types.QueryStatistics

Methods

rnf :: QueryStatistics -> () #

Hashable QueryStatistics Source # 
Instance details

Defined in Amazonka.CloudWatchLogs.Types.QueryStatistics

FromJSON QueryStatistics Source # 
Instance details

Defined in Amazonka.CloudWatchLogs.Types.QueryStatistics

type Rep QueryStatistics Source # 
Instance details

Defined in Amazonka.CloudWatchLogs.Types.QueryStatistics

type Rep QueryStatistics = D1 ('MetaData "QueryStatistics" "Amazonka.CloudWatchLogs.Types.QueryStatistics" "libZSservicesZSamazonka-cloudwatch-logsZSamazonka-cloudwatch-logs" 'False) (C1 ('MetaCons "QueryStatistics'" 'PrefixI 'True) (S1 ('MetaSel ('Just "recordsScanned") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double)) :*: (S1 ('MetaSel ('Just "bytesScanned") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double)) :*: S1 ('MetaSel ('Just "recordsMatched") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double)))))

newQueryStatistics :: QueryStatistics Source #

Create a value of QueryStatistics with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:recordsScanned:QueryStatistics', queryStatistics_recordsScanned - The total number of log events scanned during the query.

$sel:bytesScanned:QueryStatistics', queryStatistics_bytesScanned - The total number of bytes in the log events scanned during the query.

$sel:recordsMatched:QueryStatistics', queryStatistics_recordsMatched - The number of log events that matched the query string.

queryStatistics_recordsScanned :: Lens' QueryStatistics (Maybe Double) Source #

The total number of log events scanned during the query.

queryStatistics_bytesScanned :: Lens' QueryStatistics (Maybe Double) Source #

The total number of bytes in the log events scanned during the query.

queryStatistics_recordsMatched :: Lens' QueryStatistics (Maybe Double) Source #

The number of log events that matched the query string.