File Coverage

blib/lib/Paws/EC2/FpgaImage.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             package Paws::EC2::FpgaImage;
2 1     1   509 use Moose;
  1         4  
  1         6  
3             has CreateTime => (is => 'ro', isa => 'Str', request_name => 'createTime', traits => ['NameInRequest']);
4             has Description => (is => 'ro', isa => 'Str', request_name => 'description', traits => ['NameInRequest']);
5             has FpgaImageGlobalId => (is => 'ro', isa => 'Str', request_name => 'fpgaImageGlobalId', traits => ['NameInRequest']);
6             has FpgaImageId => (is => 'ro', isa => 'Str', request_name => 'fpgaImageId', traits => ['NameInRequest']);
7             has Name => (is => 'ro', isa => 'Str', request_name => 'name', traits => ['NameInRequest']);
8             has OwnerAlias => (is => 'ro', isa => 'Str', request_name => 'ownerAlias', traits => ['NameInRequest']);
9             has OwnerId => (is => 'ro', isa => 'Str', request_name => 'ownerId', traits => ['NameInRequest']);
10             has PciId => (is => 'ro', isa => 'Paws::EC2::PciId', request_name => 'pciId', traits => ['NameInRequest']);
11             has ProductCodes => (is => 'ro', isa => 'ArrayRef[Paws::EC2::ProductCode]', request_name => 'productCodes', traits => ['NameInRequest']);
12             has ShellVersion => (is => 'ro', isa => 'Str', request_name => 'shellVersion', traits => ['NameInRequest']);
13             has State => (is => 'ro', isa => 'Paws::EC2::FpgaImageState', request_name => 'state', traits => ['NameInRequest']);
14             has Tags => (is => 'ro', isa => 'ArrayRef[Paws::EC2::Tag]', request_name => 'tags', traits => ['NameInRequest']);
15             has UpdateTime => (is => 'ro', isa => 'Str', request_name => 'updateTime', traits => ['NameInRequest']);
16             1;
17              
18             ### main pod documentation begin ###
19              
20             =head1 NAME
21              
22             Paws::EC2::FpgaImage
23              
24             =head1 USAGE
25              
26             This class represents one of two things:
27              
28             =head3 Arguments in a call to a service
29              
30             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
31             Each attribute should be used as a named argument in the calls that expect this type of object.
32              
33             As an example, if Att1 is expected to be a Paws::EC2::FpgaImage object:
34              
35             $service_obj->Method(Att1 => { CreateTime => $value, ..., UpdateTime => $value });
36              
37             =head3 Results returned from an API call
38              
39             Use accessors for each attribute. If Att1 is expected to be an Paws::EC2::FpgaImage object:
40              
41             $result = $service_obj->Method(...);
42             $result->Att1->CreateTime
43              
44             =head1 DESCRIPTION
45              
46             This class has no description
47              
48             =head1 ATTRIBUTES
49              
50              
51             =head2 CreateTime => Str
52              
53             The date and time the AFI was created.
54              
55              
56             =head2 Description => Str
57              
58             The description of the AFI.
59              
60              
61             =head2 FpgaImageGlobalId => Str
62              
63             The global FPGA image identifier (AGFI ID).
64              
65              
66             =head2 FpgaImageId => Str
67              
68             The FPGA image identifier (AFI ID).
69              
70              
71             =head2 Name => Str
72              
73             The name of the AFI.
74              
75              
76             =head2 OwnerAlias => Str
77              
78             The alias of the AFI owner. Possible values include C<self>, C<amazon>,
79             and C<aws-marketplace>.
80              
81              
82             =head2 OwnerId => Str
83              
84             The AWS account ID of the AFI owner.
85              
86              
87             =head2 PciId => L<Paws::EC2::PciId>
88              
89             Information about the PCI bus.
90              
91              
92             =head2 ProductCodes => ArrayRef[L<Paws::EC2::ProductCode>]
93              
94             The product codes for the AFI.
95              
96              
97             =head2 ShellVersion => Str
98              
99             The version of the AWS Shell that was used to create the bitstream.
100              
101              
102             =head2 State => L<Paws::EC2::FpgaImageState>
103              
104             Information about the state of the AFI.
105              
106              
107             =head2 Tags => ArrayRef[L<Paws::EC2::Tag>]
108              
109             Any tags assigned to the AFI.
110              
111              
112             =head2 UpdateTime => Str
113              
114             The time of the most recent update to the AFI.
115              
116              
117              
118             =head1 SEE ALSO
119              
120             This class forms part of L<Paws>, describing an object used in L<Paws::EC2>
121              
122             =head1 BUGS and CONTRIBUTIONS
123              
124             The source code is located here: https://github.com/pplu/aws-sdk-perl
125              
126             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
127              
128             =cut