line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::ServiceCatalog::DescribeRecordOutput; |
3
|
1
|
|
|
1
|
|
282
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
5
|
|
4
|
|
|
|
|
|
|
has NextPageToken => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has RecordDetail => (is => 'ro', isa => 'Paws::ServiceCatalog::RecordDetail'); |
6
|
|
|
|
|
|
|
has RecordOutputs => (is => 'ro', isa => 'ArrayRef[Paws::ServiceCatalog::RecordOutput]'); |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
### main pod documentation begin ### |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 NAME |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
Paws::ServiceCatalog::DescribeRecordOutput |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head2 NextPageToken => Str |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
The page token to use to retrieve the next page of results for this |
22
|
|
|
|
|
|
|
operation. If there are no more pages, this value is null. |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head2 RecordDetail => L<Paws::ServiceCatalog::RecordDetail> |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
Detailed record information for the specified product. |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head2 RecordOutputs => ArrayRef[L<Paws::ServiceCatalog::RecordOutput>] |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
A list of outputs for the specified Product object created as the |
33
|
|
|
|
|
|
|
result of a request. For example, a CloudFormation-backed product that |
34
|
|
|
|
|
|
|
creates an S3 bucket would have an output for the S3 bucket URL. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head2 _request_id => Str |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=cut |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
1; |