File Coverage

blib/lib/Paws/Organizations/ListCreateAccountStatusResponse.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::Organizations::ListCreateAccountStatusResponse;
3 1     1   548 use Moose;
  1         5  
  1         11  
4             has CreateAccountStatuses => (is => 'ro', isa => 'ArrayRef[Paws::Organizations::CreateAccountStatus]');
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::Organizations::ListCreateAccountStatusResponse
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 CreateAccountStatuses => ArrayRef[L<Paws::Organizations::CreateAccountStatus>]
19              
20             A list of objects with details about the requests. Certain elements,
21             such as the accountId number, are present in the output only after the
22             account has been successfully created.
23              
24              
25             =head2 NextToken => Str
26              
27             If present, this value indicates that there is more output available
28             than is included in the current response. Use this value in the
29             C<NextToken> request parameter in a subsequent call to the operation to
30             get the next part of the output. You should repeat this until the
31             C<NextToken> response element comes back as C<null>.
32              
33              
34             =head2 _request_id => Str
35              
36              
37             =cut
38              
39             1;