PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` package Paws::CloudWatch::GetInsightRuleReport; use Moose; has EndTime => (is => 'ro', isa => 'Str', required => 1); has MaxContributorCount => (is => 'ro', isa => 'Int'); has Metrics => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); has OrderBy => (is => 'ro', isa => 'Str'); has Period => (is => 'ro', isa => 'Int', required => 1); has RuleName => (is => 'ro', isa => 'Str', required => 1); has StartTime => (is => 'ro', isa => 'Str', required => 1); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'GetInsightRuleReport'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::CloudWatch::GetInsightRuleReportOutput'); class_has _result_key => (isa => 'Str', is => 'ro', default => 'GetInsightRuleReportResult'); 1; ### main pod documentation begin ### =head1 NAME Paws::CloudWatch::GetInsightRuleReport - Arguments for method GetInsightRuleReport on L =head1 DESCRIPTION This class represents the parameters used for calling the method GetInsightRuleReport on the L service. Use the attributes of this class as arguments to method GetInsightRuleReport. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to GetInsightRuleReport. =head1 SYNOPSIS my $monitoring = Paws->service('CloudWatch'); my $GetInsightRuleReportOutput = $monitoring->GetInsightRuleReport( EndTime => '1970-01-01T01:00:00', Period => 1, RuleName => 'MyInsightRuleName', StartTime => '1970-01-01T01:00:00', MaxContributorCount => 1, # OPTIONAL Metrics => [ 'MyInsightRuleMetricName', ... # min: 1, max: 32 ], # OPTIONAL OrderBy => 'MyInsightRuleOrderBy', # OPTIONAL ); # Results: my $AggregateValue = $GetInsightRuleReportOutput->AggregateValue; my $AggregationStatistic = $GetInsightRuleReportOutput->AggregationStatistic; my $ApproximateUniqueCount = $GetInsightRuleReportOutput->ApproximateUniqueCount; my $Contributors = $GetInsightRuleReportOutput->Contributors; my $KeyLabels = $GetInsightRuleReportOutput->KeyLabels; my $MetricDatapoints = $GetInsightRuleReportOutput->MetricDatapoints; # Returns a L object. Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see L =head1 ATTRIBUTES =head2 B EndTime => Str The end time of the data to use in the report. When used in a raw HTTP Query API, it is formatted as C. For example, C<2019-07-01T23:59:59>. =head2 MaxContributorCount => Int The maximum number of contributors to include in the report. The range is 1 to 100. If you omit this, the default of 10 is used. =head2 Metrics => ArrayRef[Str|Undef] Specifies which metrics to use for aggregation of contributor values for the report. You can specify one or more of the following metrics: =over =item * C -- the number of unique contributors for each data point. =item * C -- the value of the top contributor for each data point. The identity of the contributor might change for each data point in the graph. If this rule aggregates by COUNT, the top contributor for each data point is the contributor with the most occurrences in that period. If the rule aggregates by SUM, the top contributor is the contributor with the highest sum in the log field specified by the rule's C, during that period. =item * C -- the number of data points matched by the rule. =item * C -- the sum of the values from all contributors during the time period represented by that data point. =item * C -- the minimum value from a single observation during the time period represented by that data point. =item * C -- the maximum value from a single observation during the time period represented by that data point. =item * C -- the average value from all contributors during the time period represented by that data point. =back =head2 OrderBy => Str Determines what statistic to use to rank the contributors. Valid values are SUM and MAXIMUM. =head2 B Period => Int The period, in seconds, to use for the statistics in the C results. =head2 B RuleName => Str The name of the rule that you want to see data from. =head2 B StartTime => Str The start time of the data to use in the report. When used in a raw HTTP Query API, it is formatted as C. For example, C<2019-07-01T23:59:59>. =head1 SEE ALSO This class forms part of L, documenting arguments for method GetInsightRuleReport in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut