File Coverage

blib/lib/Paws/EC2/AllocateAddressResult.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::EC2::AllocateAddressResult;
3 1     1   485 use Moose;
  1     1   2  
  1         6  
  1         687  
  1         5  
  1         11  
4             has AllocationId => (is => 'ro', isa => 'Str', request_name => 'allocationId', traits => ['NameInRequest',]);
5             has Domain => (is => 'ro', isa => 'Str', request_name => 'domain', traits => ['NameInRequest',]);
6             has PublicIp => (is => 'ro', isa => 'Str', request_name => 'publicIp', 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::AllocateAddressResult
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 AllocationId => Str
21              
22             [EC2-VPC] The ID that AWS assigns to represent the allocation of the
23             Elastic IP address for use with instances in a VPC.
24              
25              
26             =head2 Domain => Str
27              
28             Indicates whether this Elastic IP address is for use with instances in
29             EC2-Classic (C<standard>) or instances in a VPC (C<vpc>).
30              
31             Valid values are: C<"vpc">, C<"standard">
32             =head2 PublicIp => Str
33              
34             The Elastic IP address.
35              
36              
37             =head2 _request_id => Str
38              
39              
40             =cut
41