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::PerformanceInsights::GetDimensionKeyDetails; use Moose; has Group => (is => 'ro', isa => 'Str', required => 1); has GroupIdentifier => (is => 'ro', isa => 'Str', required => 1); has Identifier => (is => 'ro', isa => 'Str', required => 1); has RequestedDimensions => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); has ServiceType => (is => 'ro', isa => 'Str', required => 1); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'GetDimensionKeyDetails'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::PerformanceInsights::GetDimensionKeyDetailsResponse'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::PerformanceInsights::GetDimensionKeyDetails - Arguments for method GetDimensionKeyDetails on L =head1 DESCRIPTION This class represents the parameters used for calling the method GetDimensionKeyDetails on the L service. Use the attributes of this class as arguments to method GetDimensionKeyDetails. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to GetDimensionKeyDetails. =head1 SYNOPSIS my $pi = Paws->service('PerformanceInsights'); my $GetDimensionKeyDetailsResponse = $pi->GetDimensionKeyDetails( Group => 'MyRequestString', GroupIdentifier => 'MyRequestString', Identifier => 'MyIdentifierString', ServiceType => 'RDS', RequestedDimensions => [ 'MyRequestString', ... # max: 256 ], # OPTIONAL ); # Results: my $Dimensions = $GetDimensionKeyDetailsResponse->Dimensions; # 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 Group => Str The name of the dimension group. The only valid value is C. Performance Insights searches the specified group for the dimension group ID. =head2 B GroupIdentifier => Str The ID of the dimension group from which to retrieve dimension details. For dimension group C, the group ID is C. =head2 B Identifier => Str The ID for a data source from which to gather dimension data. This ID must be immutable and unique within an AWS Region. When a DB instance is the data source, specify its C value. For example, specify C. =head2 RequestedDimensions => ArrayRef[Str|Undef] A list of dimensions to retrieve the detail data for within the given dimension group. For the dimension group C, specify either the full dimension name C or the short dimension name C. If you don't specify this parameter, Performance Insights returns all dimension data within the specified dimension group. =head2 B ServiceType => Str The AWS service for which Performance Insights returns data. The only valid value is C. Valid values are: C<"RDS"> =head1 SEE ALSO This class forms part of L, documenting arguments for method GetDimensionKeyDetails in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut