File Coverage

blib/lib/Paws/WorkSpaces/DescribeWorkspaceBundlesResult.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::WorkSpaces::DescribeWorkspaceBundlesResult;
3 1     1   692 use Moose;
  1         5  
  1         13  
4             has Bundles => (is => 'ro', isa => 'ArrayRef[Paws::WorkSpaces::WorkspaceBundle]');
5             has NextToken => (is => 'ro', isa => 'Str');
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::WorkSpaces::DescribeWorkspaceBundlesResult
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 Bundles => ArrayRef[L<Paws::WorkSpaces::WorkspaceBundle>]
19              
20             An array of structures that contain information about the bundles.
21              
22              
23             =head2 NextToken => Str
24              
25             If not null, more results are available. Pass this value for the
26             C<NextToken> parameter in a subsequent call to this operation to
27             retrieve the next set of items. This token is valid for one day and
28             must be used within that time frame.
29              
30              
31             =head2 _request_id => Str
32              
33              
34             =cut
35              
36             1;