line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::IoT::DescribeThingResponse; |
3
|
1
|
|
|
1
|
|
446
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
8
|
|
4
|
|
|
|
|
|
|
has Attributes => (is => 'ro', isa => 'Paws::IoT::Attributes', traits => ['NameInRequest'], request_name => 'attributes'); |
5
|
|
|
|
|
|
|
has DefaultClientId => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'defaultClientId'); |
6
|
|
|
|
|
|
|
has ThingName => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'thingName'); |
7
|
|
|
|
|
|
|
has ThingTypeName => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'thingTypeName'); |
8
|
|
|
|
|
|
|
has Version => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'version'); |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
11
|
|
|
|
|
|
|
1; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
### main pod documentation begin ### |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 NAME |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Paws::IoT::DescribeThingResponse |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head2 Attributes => L<Paws::IoT::Attributes> |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
The thing attributes. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head2 DefaultClientId => Str |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
The default client ID. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head2 ThingName => Str |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
The name of the thing. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head2 ThingTypeName => Str |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
The thing type name. |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head2 Version => Int |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
The current version of the thing record in the registry. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
To avoid unintentional changes to the information in the registry, you |
47
|
|
|
|
|
|
|
can pass the version information in the C<expectedVersion> parameter of |
48
|
|
|
|
|
|
|
the C<UpdateThing> and C<DeleteThing> calls. |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=head2 _request_id => Str |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=cut |
55
|
|
|
|
|
|
|
|