The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use Moose;
has CacheParameterGroupName => (is => 'ro', isa => 'Str');
has Marker => (is => 'ro', isa => 'Str');
has MaxRecords => (is => 'ro', isa => 'Int');
class_has _api_call => (isa => 'Str', is => 'ro', default => 'DescribeCacheParameterGroups');
class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::ElastiCache::CacheParameterGroupsMessage');
class_has _result_key => (isa => 'Str', is => 'ro', default => 'DescribeCacheParameterGroupsResult');
1;
### main pod documentation begin ###
=head1 NAME
Paws::ElastiCache::DescribeCacheParameterGroups - Arguments for method DescribeCacheParameterGroups on L<Paws::ElastiCache>
=head1 DESCRIPTION
This class represents the parameters used for calling the method DescribeCacheParameterGroups on the
L<Amazon ElastiCache|Paws::ElastiCache> service. Use the attributes of this class
as arguments to method DescribeCacheParameterGroups.
You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to DescribeCacheParameterGroups.
=head1 SYNOPSIS
my $elasticache = Paws->service('ElastiCache');
# DescribeCacheParameterGroups
# Returns a list of cache parameter group descriptions. If a cache parameter
# group name is specified, the list contains only the descriptions for that
# group.
my $CacheParameterGroupsMessage =
$elasticache->DescribeCacheParameterGroups(
'CacheParameterGroupName' => 'custom-mem1-4' );
# Results:
my $CacheParameterGroups =
$CacheParameterGroupsMessage->CacheParameterGroups;
# Returns a L<Paws::ElastiCache::CacheParameterGroupsMessage> 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.
=head1 ATTRIBUTES
=head2 CacheParameterGroupName => Str
The name of a specific cache parameter group to return details for.
=head2 Marker => Str
An optional marker returned from a prior request. Use this marker for
pagination of results from this operation. If this parameter is
specified, the response includes only records beyond the marker, up to
the value specified by C<MaxRecords>.
=head2 MaxRecords => Int
The maximum number of records to include in the response. If more
records exist than the specified C<MaxRecords> value, a marker is
included in the response so that the remaining results can be
retrieved.
Default: 100
Constraints: minimum 20; maximum 100.
=head1 SEE ALSO
This class forms part of L<Paws>, documenting arguments for method DescribeCacheParameterGroups in L<Paws::ElastiCache>
=head1 BUGS and CONTRIBUTIONS
The source code is located here: L<https://github.com/pplu/aws-sdk-perl>
=cut