line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::EC2::AssociateVpcCidrBlockResult; |
3
|
1
|
|
|
1
|
|
315
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
4
|
|
|
|
|
|
|
has CidrBlockAssociation => (is => 'ro', isa => 'Paws::EC2::VpcCidrBlockAssociation', request_name => 'cidrBlockAssociation', traits => ['NameInRequest',]); |
5
|
|
|
|
|
|
|
has Ipv6CidrBlockAssociation => (is => 'ro', isa => 'Paws::EC2::VpcIpv6CidrBlockAssociation', request_name => 'ipv6CidrBlockAssociation', traits => ['NameInRequest',]); |
6
|
|
|
|
|
|
|
has VpcId => (is => 'ro', isa => 'Str', request_name => 'vpcId', traits => ['NameInRequest',]); |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
1; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
### main pod documentation begin ### |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 NAME |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
Paws::EC2::AssociateVpcCidrBlockResult |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head2 CidrBlockAssociation => L<Paws::EC2::VpcCidrBlockAssociation> |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
Information about the IPv4 CIDR block association. |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head2 Ipv6CidrBlockAssociation => L<Paws::EC2::VpcIpv6CidrBlockAssociation> |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
Information about the IPv6 CIDR block association. |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head2 VpcId => Str |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
The ID of the VPC. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head2 _request_id => Str |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=cut |
39
|
|
|
|
|
|
|
|