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::AutoScalingPlans::GetScalingPlanResourceForecastData; use Moose; has EndTime => (is => 'ro', isa => 'Str', required => 1); has ForecastDataType => (is => 'ro', isa => 'Str', required => 1); has ResourceId => (is => 'ro', isa => 'Str', required => 1); has ScalableDimension => (is => 'ro', isa => 'Str', required => 1); has ScalingPlanName => (is => 'ro', isa => 'Str', required => 1); has ScalingPlanVersion => (is => 'ro', isa => 'Int', required => 1); has ServiceNamespace => (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 => 'GetScalingPlanResourceForecastData'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::AutoScalingPlans::GetScalingPlanResourceForecastDataResponse'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::AutoScalingPlans::GetScalingPlanResourceForecastData - Arguments for method GetScalingPlanResourceForecastData on L =head1 DESCRIPTION This class represents the parameters used for calling the method GetScalingPlanResourceForecastData on the L service. Use the attributes of this class as arguments to method GetScalingPlanResourceForecastData. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to GetScalingPlanResourceForecastData. =head1 SYNOPSIS my $autoscaling-plans = Paws->service('AutoScalingPlans'); my $GetScalingPlanResourceForecastDataResponse = $autoscaling -plans->GetScalingPlanResourceForecastData( EndTime => '1970-01-01T01:00:00', ForecastDataType => 'CapacityForecast', ResourceId => 'MyXmlString', ScalableDimension => 'autoscaling:autoScalingGroup:DesiredCapacity', ScalingPlanName => 'MyScalingPlanName', ScalingPlanVersion => 1, ServiceNamespace => 'autoscaling', StartTime => '1970-01-01T01:00:00', ); # Results: my $Datapoints = $GetScalingPlanResourceForecastDataResponse->Datapoints; # 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 exclusive end time of the time range for the forecast data to get. The maximum time duration between the start and end time is seven days. Although this parameter can accept a date and time that is more than two days in the future, the availability of forecast data has limits. AWS Auto Scaling only issues forecasts for periods of two days in advance. =head2 B ForecastDataType => Str The type of forecast data to get. =over =item * C: The load metric forecast. =item * C: The capacity forecast. =item * C: The minimum capacity for each scheduled scaling action. This data is calculated as the larger of two values: the capacity forecast or the minimum capacity in the scaling instruction. =item * C: The maximum capacity for each scheduled scaling action. The calculation used is determined by the predictive scaling maximum capacity behavior setting in the scaling instruction. =back Valid values are: C<"CapacityForecast">, C<"LoadForecast">, C<"ScheduledActionMinCapacity">, C<"ScheduledActionMaxCapacity"> =head2 B ResourceId => Str The ID of the resource. This string consists of a prefix (C) followed by the name of a specified Auto Scaling group (C). Example: C. =head2 B ScalableDimension => Str The scalable dimension for the resource. The only valid value is C. Valid values are: C<"autoscaling:autoScalingGroup:DesiredCapacity">, C<"ecs:service:DesiredCount">, C<"ec2:spot-fleet-request:TargetCapacity">, C<"rds:cluster:ReadReplicaCount">, C<"dynamodb:table:ReadCapacityUnits">, C<"dynamodb:table:WriteCapacityUnits">, C<"dynamodb:index:ReadCapacityUnits">, C<"dynamodb:index:WriteCapacityUnits"> =head2 B ScalingPlanName => Str The name of the scaling plan. =head2 B ScalingPlanVersion => Int The version number of the scaling plan. Currently, the only valid value is C<1>. =head2 B ServiceNamespace => Str The namespace of the AWS service. The only valid value is C. Valid values are: C<"autoscaling">, C<"ecs">, C<"ec2">, C<"rds">, C<"dynamodb"> =head2 B StartTime => Str The inclusive start time of the time range for the forecast data to get. The date and time can be at most 56 days before the current date and time. =head1 SEE ALSO This class forms part of L, documenting arguments for method GetScalingPlanResourceForecastData in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut