File Coverage

blib/lib/Paws/EC2/ImageAttribute.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::ImageAttribute;
3 1     1   628 use Moose;
  1         3  
  1         8  
4             has BlockDeviceMappings => (is => 'ro', isa => 'ArrayRef[Paws::EC2::BlockDeviceMapping]', request_name => 'blockDeviceMapping', traits => ['NameInRequest',]);
5             has Description => (is => 'ro', isa => 'Paws::EC2::AttributeValue', request_name => 'description', traits => ['NameInRequest',]);
6             has ImageId => (is => 'ro', isa => 'Str', request_name => 'imageId', traits => ['NameInRequest',]);
7             has KernelId => (is => 'ro', isa => 'Paws::EC2::AttributeValue', request_name => 'kernel', traits => ['NameInRequest',]);
8             has LaunchPermissions => (is => 'ro', isa => 'ArrayRef[Paws::EC2::LaunchPermission]', request_name => 'launchPermission', traits => ['NameInRequest',]);
9             has ProductCodes => (is => 'ro', isa => 'ArrayRef[Paws::EC2::ProductCode]', request_name => 'productCodes', traits => ['NameInRequest',]);
10             has RamdiskId => (is => 'ro', isa => 'Paws::EC2::AttributeValue', request_name => 'ramdisk', traits => ['NameInRequest',]);
11             has SriovNetSupport => (is => 'ro', isa => 'Paws::EC2::AttributeValue', request_name => 'sriovNetSupport', traits => ['NameInRequest',]);
12              
13             has _request_id => (is => 'ro', isa => 'Str');
14             1;
15              
16             ### main pod documentation begin ###
17              
18             =head1 NAME
19              
20             Paws::EC2::ImageAttribute
21              
22             =head1 ATTRIBUTES
23              
24              
25             =head2 BlockDeviceMappings => ArrayRef[L<Paws::EC2::BlockDeviceMapping>]
26              
27             One or more block device mapping entries.
28              
29              
30             =head2 Description => L<Paws::EC2::AttributeValue>
31              
32             A description for the AMI.
33              
34              
35             =head2 ImageId => Str
36              
37             The ID of the AMI.
38              
39              
40             =head2 KernelId => L<Paws::EC2::AttributeValue>
41              
42             The kernel ID.
43              
44              
45             =head2 LaunchPermissions => ArrayRef[L<Paws::EC2::LaunchPermission>]
46              
47             One or more launch permissions.
48              
49              
50             =head2 ProductCodes => ArrayRef[L<Paws::EC2::ProductCode>]
51              
52             One or more product codes.
53              
54              
55             =head2 RamdiskId => L<Paws::EC2::AttributeValue>
56              
57             The RAM disk ID.
58              
59              
60             =head2 SriovNetSupport => L<Paws::EC2::AttributeValue>
61              
62             Indicates whether enhanced networking with the Intel 82599 Virtual
63             Function interface is enabled.
64              
65              
66             =head2 _request_id => Str
67              
68              
69             =cut
70