File Coverage

blib/lib/Paws/MobileHub/ProjectDetails.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::MobileHub::ProjectDetails;
2 1     1   541 use Moose;
  1         2  
  1         9  
3             has ConsoleUrl => (is => 'ro', isa => 'Str', request_name => 'consoleUrl', traits => ['NameInRequest']);
4             has CreatedDate => (is => 'ro', isa => 'Str', request_name => 'createdDate', traits => ['NameInRequest']);
5             has LastUpdatedDate => (is => 'ro', isa => 'Str', request_name => 'lastUpdatedDate', traits => ['NameInRequest']);
6             has Name => (is => 'ro', isa => 'Str', request_name => 'name', traits => ['NameInRequest']);
7             has ProjectId => (is => 'ro', isa => 'Str', request_name => 'projectId', traits => ['NameInRequest']);
8             has Region => (is => 'ro', isa => 'Str', request_name => 'region', traits => ['NameInRequest']);
9             has Resources => (is => 'ro', isa => 'ArrayRef[Paws::MobileHub::Resource]', request_name => 'resources', traits => ['NameInRequest']);
10             has State => (is => 'ro', isa => 'Str', request_name => 'state', traits => ['NameInRequest']);
11             1;
12              
13             ### main pod documentation begin ###
14              
15             =head1 NAME
16              
17             Paws::MobileHub::ProjectDetails
18              
19             =head1 USAGE
20              
21             This class represents one of two things:
22              
23             =head3 Arguments in a call to a service
24              
25             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
26             Each attribute should be used as a named argument in the calls that expect this type of object.
27              
28             As an example, if Att1 is expected to be a Paws::MobileHub::ProjectDetails object:
29              
30             $service_obj->Method(Att1 => { ConsoleUrl => $value, ..., State => $value });
31              
32             =head3 Results returned from an API call
33              
34             Use accessors for each attribute. If Att1 is expected to be an Paws::MobileHub::ProjectDetails object:
35              
36             $result = $service_obj->Method(...);
37             $result->Att1->ConsoleUrl
38              
39             =head1 DESCRIPTION
40              
41             Detailed information about an AWS Mobile Hub project.
42              
43             =head1 ATTRIBUTES
44              
45              
46             =head2 ConsoleUrl => Str
47              
48             Website URL for this project in the AWS Mobile Hub console.
49              
50              
51             =head2 CreatedDate => Str
52              
53             Date the project was created.
54              
55              
56             =head2 LastUpdatedDate => Str
57              
58             Date of the last modification of the project.
59              
60              
61             =head2 Name => Str
62              
63            
64              
65              
66             =head2 ProjectId => Str
67              
68            
69              
70              
71             =head2 Region => Str
72              
73            
74              
75              
76             =head2 Resources => ArrayRef[L<Paws::MobileHub::Resource>]
77              
78            
79              
80              
81             =head2 State => Str
82              
83            
84              
85              
86              
87             =head1 SEE ALSO
88              
89             This class forms part of L<Paws>, describing an object used in L<Paws::MobileHub>
90              
91             =head1 BUGS and CONTRIBUTIONS
92              
93             The source code is located here: https://github.com/pplu/aws-sdk-perl
94              
95             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
96              
97             =cut
98