File Coverage

blib/lib/Paws/EC2/VpcPeeringConnection.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::EC2::VpcPeeringConnection;
2 1     1   423 use Moose;
  1         3  
  1         6  
3             has AccepterVpcInfo => (is => 'ro', isa => 'Paws::EC2::VpcPeeringConnectionVpcInfo', request_name => 'accepterVpcInfo', traits => ['NameInRequest']);
4             has ExpirationTime => (is => 'ro', isa => 'Str', request_name => 'expirationTime', traits => ['NameInRequest']);
5             has RequesterVpcInfo => (is => 'ro', isa => 'Paws::EC2::VpcPeeringConnectionVpcInfo', request_name => 'requesterVpcInfo', traits => ['NameInRequest']);
6             has Status => (is => 'ro', isa => 'Paws::EC2::VpcPeeringConnectionStateReason', request_name => 'status', traits => ['NameInRequest']);
7             has Tags => (is => 'ro', isa => 'ArrayRef[Paws::EC2::Tag]', request_name => 'tagSet', traits => ['NameInRequest']);
8             has VpcPeeringConnectionId => (is => 'ro', isa => 'Str', request_name => 'vpcPeeringConnectionId', traits => ['NameInRequest']);
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::EC2::VpcPeeringConnection
16              
17             =head1 USAGE
18              
19             This class represents one of two things:
20              
21             =head3 Arguments in a call to a service
22              
23             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
24             Each attribute should be used as a named argument in the calls that expect this type of object.
25              
26             As an example, if Att1 is expected to be a Paws::EC2::VpcPeeringConnection object:
27              
28             $service_obj->Method(Att1 => { AccepterVpcInfo => $value, ..., VpcPeeringConnectionId => $value });
29              
30             =head3 Results returned from an API call
31              
32             Use accessors for each attribute. If Att1 is expected to be an Paws::EC2::VpcPeeringConnection object:
33              
34             $result = $service_obj->Method(...);
35             $result->Att1->AccepterVpcInfo
36              
37             =head1 DESCRIPTION
38              
39             This class has no description
40              
41             =head1 ATTRIBUTES
42              
43              
44             =head2 AccepterVpcInfo => L<Paws::EC2::VpcPeeringConnectionVpcInfo>
45              
46             Information about the accepter VPC. CIDR block information is only
47             returned when describing an active VPC peering connection.
48              
49              
50             =head2 ExpirationTime => Str
51              
52             The time that an unaccepted VPC peering connection will expire.
53              
54              
55             =head2 RequesterVpcInfo => L<Paws::EC2::VpcPeeringConnectionVpcInfo>
56              
57             Information about the requester VPC. CIDR block information is only
58             returned when describing an active VPC peering connection.
59              
60              
61             =head2 Status => L<Paws::EC2::VpcPeeringConnectionStateReason>
62              
63             The status of the VPC peering connection.
64              
65              
66             =head2 Tags => ArrayRef[L<Paws::EC2::Tag>]
67              
68             Any tags assigned to the resource.
69              
70              
71             =head2 VpcPeeringConnectionId => Str
72              
73             The ID of the VPC peering connection.
74              
75              
76              
77             =head1 SEE ALSO
78              
79             This class forms part of L<Paws>, describing an object used in L<Paws::EC2>
80              
81             =head1 BUGS and CONTRIBUTIONS
82              
83             The source code is located here: https://github.com/pplu/aws-sdk-perl
84              
85             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
86              
87             =cut