File Coverage

blib/lib/Paws/ElastiCache/CacheParameterGroupDetails.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::ElastiCache::CacheParameterGroupDetails;
3 1     1   412 use Moose;
  1         5  
  1         9  
4             has CacheNodeTypeSpecificParameters => (is => 'ro', isa => 'ArrayRef[Paws::ElastiCache::CacheNodeTypeSpecificParameter]', request_name => 'CacheNodeTypeSpecificParameter', traits => ['NameInRequest',]);
5             has Marker => (is => 'ro', isa => 'Str');
6             has Parameters => (is => 'ro', isa => 'ArrayRef[Paws::ElastiCache::Parameter]', request_name => 'Parameter', traits => ['NameInRequest',]);
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::ElastiCache::CacheParameterGroupDetails
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 CacheNodeTypeSpecificParameters => ArrayRef[L<Paws::ElastiCache::CacheNodeTypeSpecificParameter>]
21              
22             A list of parameters specific to a particular cache node type. Each
23             element in the list contains detailed information about one parameter.
24              
25              
26             =head2 Marker => Str
27              
28             Provides an identifier to allow retrieval of paginated results.
29              
30              
31             =head2 Parameters => ArrayRef[L<Paws::ElastiCache::Parameter>]
32              
33             A list of Parameter instances.
34              
35              
36             =head2 _request_id => Str
37              
38              
39             =cut
40