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