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::ComputeOptimizer::ExportLambdaFunctionRecommendations; use Moose; has AccountIds => (is => 'ro', isa => 'ArrayRef[Str|Undef]', traits => ['NameInRequest'], request_name => 'accountIds' ); has FieldsToExport => (is => 'ro', isa => 'ArrayRef[Str|Undef]', traits => ['NameInRequest'], request_name => 'fieldsToExport' ); has FileFormat => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'fileFormat' ); has Filters => (is => 'ro', isa => 'ArrayRef[Paws::ComputeOptimizer::LambdaFunctionRecommendationFilter]', traits => ['NameInRequest'], request_name => 'filters' ); has IncludeMemberAccounts => (is => 'ro', isa => 'Bool', traits => ['NameInRequest'], request_name => 'includeMemberAccounts' ); has S3DestinationConfig => (is => 'ro', isa => 'Paws::ComputeOptimizer::S3DestinationConfig', traits => ['NameInRequest'], request_name => 's3DestinationConfig' , required => 1); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'ExportLambdaFunctionRecommendations'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::ComputeOptimizer::ExportLambdaFunctionRecommendationsResponse'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::ComputeOptimizer::ExportLambdaFunctionRecommendations - Arguments for method ExportLambdaFunctionRecommendations on L =head1 DESCRIPTION This class represents the parameters used for calling the method ExportLambdaFunctionRecommendations on the L service. Use the attributes of this class as arguments to method ExportLambdaFunctionRecommendations. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ExportLambdaFunctionRecommendations. =head1 SYNOPSIS my $compute-optimizer = Paws->service('ComputeOptimizer'); my $ExportLambdaFunctionRecommendationsResponse = $compute -optimizer->ExportLambdaFunctionRecommendations( S3DestinationConfig => { Bucket => 'MyDestinationBucket', # OPTIONAL KeyPrefix => 'MyDestinationKeyPrefix', # OPTIONAL }, AccountIds => [ 'MyAccountId', ... ], # OPTIONAL FieldsToExport => [ 'AccountId', ... # values: AccountId, FunctionArn, FunctionVersion, Finding, FindingReasonCodes, NumberOfInvocations, UtilizationMetricsDurationMaximum, UtilizationMetricsDurationAverage, UtilizationMetricsMemoryMaximum, UtilizationMetricsMemoryAverage, LookbackPeriodInDays, CurrentConfigurationMemorySize, CurrentConfigurationTimeout, CurrentCostTotal, CurrentCostAverage, RecommendationOptionsConfigurationMemorySize, RecommendationOptionsCostLow, RecommendationOptionsCostHigh, RecommendationOptionsProjectedUtilizationMetricsDurationLowerBound, RecommendationOptionsProjectedUtilizationMetricsDurationUpperBound, RecommendationOptionsProjectedUtilizationMetricsDurationExpected, LastRefreshTimestamp ], # OPTIONAL FileFormat => 'Csv', # OPTIONAL Filters => [ { Name => 'Finding', # values: Finding, FindingReasonCode; OPTIONAL Values => [ 'MyFilterValue', ... ], # OPTIONAL }, ... ], # OPTIONAL IncludeMemberAccounts => 1, # OPTIONAL ); # Results: my $JobId = $ExportLambdaFunctionRecommendationsResponse->JobId; my $S3Destination = $ExportLambdaFunctionRecommendationsResponse->S3Destination; # 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 AccountIds => ArrayRef[Str|Undef] The IDs of the AWS accounts for which to export Lambda function recommendations. If your account is the management account of an organization, use this parameter to specify the member account for which you want to export recommendations. This parameter cannot be specified together with the include member accounts parameter. The parameters are mutually exclusive. Recommendations for member accounts are not included in the export if this parameter, or the include member accounts parameter, is omitted. You can specify multiple account IDs per request. =head2 FieldsToExport => ArrayRef[Str|Undef] The recommendations data to include in the export file. For more information about the fields that can be exported, see Exported files (https://docs.aws.amazon.com/compute-optimizer/latest/ug/exporting-recommendations.html#exported-files) in the I. =head2 FileFormat => Str The format of the export file. The only export file format currently supported is C. Valid values are: C<"Csv"> =head2 Filters => ArrayRef[L] An array of objects that describe a filter to export a more specific set of Lambda function recommendations. =head2 IncludeMemberAccounts => Bool Indicates whether to include recommendations for resources in all member accounts of the organization if your account is the management account of an organization. The member accounts must also be opted in to Compute Optimizer, and trusted access for Compute Optimizer must be enabled in the organization account. For more information, see Compute Optimizer and AWS Organizations trusted access (https://docs.aws.amazon.com/compute-optimizer/latest/ug/security-iam.html#trusted-service-access) in the I. Recommendations for member accounts of the organization are not included in the export file if this parameter is omitted. This parameter cannot be specified together with the account IDs parameter. The parameters are mutually exclusive. Recommendations for member accounts are not included in the export if this parameter, or the account IDs parameter, is omitted. =head2 B S3DestinationConfig => L =head1 SEE ALSO This class forms part of L, documenting arguments for method ExportLambdaFunctionRecommendations in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut