File Coverage

blib/lib/Paws/EC2/ModifyVpcPeeringConnectionOptionsResult.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::EC2::ModifyVpcPeeringConnectionOptionsResult;
3 1     1   535 use Moose;
  1         4  
  1         8  
4             has AccepterPeeringConnectionOptions => (is => 'ro', isa => 'Paws::EC2::PeeringConnectionOptions', request_name => 'accepterPeeringConnectionOptions', traits => ['NameInRequest',]);
5             has RequesterPeeringConnectionOptions => (is => 'ro', isa => 'Paws::EC2::PeeringConnectionOptions', request_name => 'requesterPeeringConnectionOptions', traits => ['NameInRequest',]);
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8             1;
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::EC2::ModifyVpcPeeringConnectionOptionsResult
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 AccepterPeeringConnectionOptions => L<Paws::EC2::PeeringConnectionOptions>
20              
21             Information about the VPC peering connection options for the accepter
22             VPC.
23              
24              
25             =head2 RequesterPeeringConnectionOptions => L<Paws::EC2::PeeringConnectionOptions>
26              
27             Information about the VPC peering connection options for the requester
28             VPC.
29              
30              
31             =head2 _request_id => Str
32              
33              
34             =cut
35