File Coverage

blib/lib/Paws/Organizations/Account.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             package Paws::Organizations::Account;
2 1     1   605 use Moose;
  1         4  
  1         14  
3             has Arn => (is => 'ro', isa => 'Str');
4             has Email => (is => 'ro', isa => 'Str');
5             has Id => (is => 'ro', isa => 'Str');
6             has JoinedMethod => (is => 'ro', isa => 'Str');
7             has JoinedTimestamp => (is => 'ro', isa => 'Str');
8             has Name => (is => 'ro', isa => 'Str');
9             has Status => (is => 'ro', isa => 'Str');
10             1;
11              
12             ### main pod documentation begin ###
13              
14             =head1 NAME
15              
16             Paws::Organizations::Account
17              
18             =head1 USAGE
19              
20             This class represents one of two things:
21              
22             =head3 Arguments in a call to a service
23              
24             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
25             Each attribute should be used as a named argument in the calls that expect this type of object.
26              
27             As an example, if Att1 is expected to be a Paws::Organizations::Account object:
28              
29             $service_obj->Method(Att1 => { Arn => $value, ..., Status => $value });
30              
31             =head3 Results returned from an API call
32              
33             Use accessors for each attribute. If Att1 is expected to be an Paws::Organizations::Account object:
34              
35             $result = $service_obj->Method(...);
36             $result->Att1->Arn
37              
38             =head1 DESCRIPTION
39              
40             Contains information about an AWS account that is a member of an
41             organization.
42              
43             =head1 ATTRIBUTES
44              
45              
46             =head2 Arn => Str
47              
48             The Amazon Resource Name (ARN) of the account.
49              
50             For more information about ARNs in Organizations, see ARN Formats
51             Supported by Organizations in the I<AWS Organizations User Guide>.
52              
53              
54             =head2 Email => Str
55              
56             The email address associated with the AWS account.
57              
58             The regex pattern for this parameter is a string of characters that
59             represents a standard Internet email address.
60              
61              
62             =head2 Id => Str
63              
64             The unique identifier (ID) of the account.
65              
66             The regex pattern for an account ID string requires exactly 12 digits.
67              
68              
69             =head2 JoinedMethod => Str
70              
71             The method by which the account joined the organization.
72              
73              
74             =head2 JoinedTimestamp => Str
75              
76             The date the account became a part of the organization.
77              
78              
79             =head2 Name => Str
80              
81             The friendly name of the account.
82              
83             The regex pattern that is used to validate this parameter is a string
84             of any of the characters in the ASCII character range.
85              
86              
87             =head2 Status => Str
88              
89             The status of the account in the organization.
90              
91              
92              
93             =head1 SEE ALSO
94              
95             This class forms part of L<Paws>, describing an object used in L<Paws::Organizations>
96              
97             =head1 BUGS and CONTRIBUTIONS
98              
99             The source code is located here: https://github.com/pplu/aws-sdk-perl
100              
101             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
102              
103             =cut
104