line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::CloudWatch::GetDashboardOutput; |
3
|
1
|
|
|
1
|
|
362
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
4
|
|
|
|
|
|
|
has DashboardArn => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has DashboardBody => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has DashboardName => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
1; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
### main pod documentation begin ### |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 NAME |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
Paws::CloudWatch::GetDashboardOutput |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head2 DashboardArn => Str |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
The Amazon Resource Name (ARN) of the dashboard. |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head2 DashboardBody => Str |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
The detailed information about the dashboard, including what widgets |
28
|
|
|
|
|
|
|
are included and their location on the dashboard. For more information |
29
|
|
|
|
|
|
|
about the C<DashboardBody> syntax, see |
30
|
|
|
|
|
|
|
CloudWatch-Dashboard-Body-Structure. |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head2 DashboardName => Str |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
The name of the dashboard. |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head2 _request_id => Str |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=cut |
42
|
|
|
|
|
|
|
|