line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Organizations::CreateAccountResponse; |
3
|
1
|
|
|
1
|
|
558
|
use Moose; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
9
|
|
4
|
|
|
|
|
|
|
has CreateAccountStatus => (is => 'ro', isa => 'Paws::Organizations::CreateAccountStatus'); |
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
### main pod documentation begin ### |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 NAME |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
Paws::Organizations::CreateAccountResponse |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head2 CreateAccountStatus => L<Paws::Organizations::CreateAccountStatus> |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
A structure that contains details about the request to create an |
20
|
|
|
|
|
|
|
account. This response structure might not be fully populated when you |
21
|
|
|
|
|
|
|
first receive it because account creation is an asynchronous process. |
22
|
|
|
|
|
|
|
You can pass the returned CreateAccountStatus ID as a parameter to C< |
23
|
|
|
|
|
|
|
DescribeCreateAccountStatus > to get status about the progress of the |
24
|
|
|
|
|
|
|
request at later times. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head2 _request_id => Str |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=cut |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
1; |