File Coverage

blib/lib/Paws/DirectConnect/Interconnect.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              
2             package Paws::DirectConnect::Interconnect;
3 1     1   436 use Moose;
  1         4  
  1         9  
4             has AwsDevice => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'awsDevice' );
5             has Bandwidth => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'bandwidth' );
6             has InterconnectId => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'interconnectId' );
7             has InterconnectName => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'interconnectName' );
8             has InterconnectState => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'interconnectState' );
9             has LagId => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'lagId' );
10             has LoaIssueTime => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'loaIssueTime' );
11             has Location => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'location' );
12             has Region => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'region' );
13              
14             has _request_id => (is => 'ro', isa => 'Str');
15              
16             ### main pod documentation begin ###
17              
18             =head1 NAME
19              
20             Paws::DirectConnect::Interconnect
21              
22             =head1 ATTRIBUTES
23              
24              
25             =head2 AwsDevice => Str
26              
27             The Direct Connection endpoint which the physical connection terminates
28             on.
29              
30              
31             =head2 Bandwidth => Str
32              
33              
34              
35              
36             =head2 InterconnectId => Str
37              
38              
39              
40              
41             =head2 InterconnectName => Str
42              
43              
44              
45              
46             =head2 InterconnectState => Str
47              
48              
49              
50             Valid values are: C<"requested">, C<"pending">, C<"available">, C<"down">, C<"deleting">, C<"deleted">
51             =head2 LagId => Str
52              
53              
54              
55              
56             =head2 LoaIssueTime => Str
57              
58             The time of the most recent call to DescribeInterconnectLoa for this
59             Interconnect.
60              
61              
62             =head2 Location => Str
63              
64              
65              
66              
67             =head2 Region => Str
68              
69              
70              
71              
72             =head2 _request_id => Str
73              
74              
75             =cut
76              
77             1;