File Coverage

blib/lib/Paws/EC2/DescribeElasticGpusResult.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::EC2::DescribeElasticGpusResult;
3 1     1   326 use Moose;
  1         2  
  1         5  
4             has ElasticGpuSet => (is => 'ro', isa => 'ArrayRef[Paws::EC2::ElasticGpus]', request_name => 'elasticGpuSet', traits => ['NameInRequest',]);
5             has MaxResults => (is => 'ro', isa => 'Int', request_name => 'maxResults', traits => ['NameInRequest',]);
6             has NextToken => (is => 'ro', isa => 'Str', request_name => 'nextToken', 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::EC2::DescribeElasticGpusResult
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 ElasticGpuSet => ArrayRef[L<Paws::EC2::ElasticGpus>]
21              
22             Information about the Elastic GPUs.
23              
24              
25             =head2 MaxResults => Int
26              
27             The total number of items to return. If the total number of items
28             available is more than the value specified in max-items then a
29             Next-Token will be provided in the output that you can use to resume
30             pagination.
31              
32              
33             =head2 NextToken => Str
34              
35             The token to use to retrieve the next page of results. This value is
36             C<null> when there are no more results to return.
37              
38              
39             =head2 _request_id => Str
40              
41              
42             =cut
43