File Coverage

blib/lib/Paws/EC2/DescribeVpcAttributeResult.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::DescribeVpcAttributeResult;
3 1     1   523 use Moose;
  1         3  
  1         10  
4             has EnableDnsHostnames => (is => 'ro', isa => 'Paws::EC2::AttributeBooleanValue', request_name => 'enableDnsHostnames', traits => ['NameInRequest',]);
5             has EnableDnsSupport => (is => 'ro', isa => 'Paws::EC2::AttributeBooleanValue', request_name => 'enableDnsSupport', 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::DescribeVpcAttributeResult
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 EnableDnsHostnames => L<Paws::EC2::AttributeBooleanValue>
21              
22             Indicates whether the instances launched in the VPC get DNS hostnames.
23             If this attribute is C<true>, instances in the VPC get DNS hostnames;
24             otherwise, they do not.
25              
26              
27             =head2 EnableDnsSupport => L<Paws::EC2::AttributeBooleanValue>
28              
29             Indicates whether DNS resolution is enabled for the VPC. If this
30             attribute is C<true>, the Amazon DNS server resolves DNS hostnames for
31             your instances to their corresponding IP addresses; otherwise, it does
32             not.
33              
34              
35             =head2 VpcId => Str
36              
37             The ID of the VPC.
38              
39              
40             =head2 _request_id => Str
41              
42              
43             =cut
44