File Coverage

blib/lib/Paws/EC2/DescribeNetworkInterfacePermissions.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::DescribeNetworkInterfacePermissions;
3 1     1   334 use Moose;
  1         2  
  1         6  
4             has Filters => (is => 'ro', isa => 'ArrayRef[Paws::EC2::Filter]', traits => ['NameInRequest'], request_name => 'Filter' );
5             has MaxResults => (is => 'ro', isa => 'Int');
6             has NetworkInterfacePermissionIds => (is => 'ro', isa => 'ArrayRef[Str|Undef]', traits => ['NameInRequest'], request_name => 'NetworkInterfacePermissionId' );
7             has NextToken => (is => 'ro', isa => 'Str');
8              
9 1     1   5388 use MooseX::ClassAttribute;
  1         2  
  1         8  
10              
11             class_has _api_call => (isa => 'Str', is => 'ro', default => 'DescribeNetworkInterfacePermissions');
12             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::EC2::DescribeNetworkInterfacePermissionsResult');
13             class_has _result_key => (isa => 'Str', is => 'ro');
14             1;
15              
16             ### main pod documentation begin ###
17              
18             =head1 NAME
19              
20             Paws::EC2::DescribeNetworkInterfacePermissions - Arguments for method DescribeNetworkInterfacePermissions on Paws::EC2
21              
22             =head1 DESCRIPTION
23              
24             This class represents the parameters used for calling the method DescribeNetworkInterfacePermissions on the
25             Amazon Elastic Compute Cloud service. Use the attributes of this class
26             as arguments to method DescribeNetworkInterfacePermissions.
27              
28             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to DescribeNetworkInterfacePermissions.
29              
30             As an example:
31              
32             $service_obj->DescribeNetworkInterfacePermissions(Att1 => $value1, Att2 => $value2, ...);
33              
34             Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object.
35              
36             =head1 ATTRIBUTES
37              
38              
39             =head2 Filters => ArrayRef[L<Paws::EC2::Filter>]
40              
41             One or more filters.
42              
43             =over
44              
45             =item *
46              
47             C<network-interface-permission.network-interface-permission-id> - The
48             ID of the permission.
49              
50             =item *
51              
52             C<network-interface-permission.network-interface-id> - The ID of the
53             network interface.
54              
55             =item *
56              
57             C<network-interface-permission.aws-account-id> - The AWS account ID.
58              
59             =item *
60              
61             C<network-interface-permission.aws-service> - The AWS service.
62              
63             =item *
64              
65             C<network-interface-permission.permission> - The type of permission
66             (C<INSTANCE-ATTACH> | C<EIP-ASSOCIATE>).
67              
68             =back
69              
70              
71              
72              
73             =head2 MaxResults => Int
74              
75             The maximum number of results to return in a single call. To retrieve
76             the remaining results, make another call with the returned C<NextToken>
77             value. If this parameter is not specified, up to 50 results are
78             returned by default.
79              
80              
81              
82             =head2 NetworkInterfacePermissionIds => ArrayRef[Str|Undef]
83              
84             One or more network interface permission IDs.
85              
86              
87              
88             =head2 NextToken => Str
89              
90             The token to request the next page of results.
91              
92              
93              
94              
95             =head1 SEE ALSO
96              
97             This class forms part of L<Paws>, documenting arguments for method DescribeNetworkInterfacePermissions in L<Paws::EC2>
98              
99             =head1 BUGS and CONTRIBUTIONS
100              
101             The source code is located here: https://github.com/pplu/aws-sdk-perl
102              
103             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
104              
105             =cut
106